File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -263,7 +263,7 @@ Traceback (most recent call last):
263
263
File "native.py", line 44, in i
264
264
r(0)
265
265
File "native.py", line 15, in r
266
- [0][1]
266
+ [0][1] # type: ignore [index-range]
267
267
IndexError: list index out of range
268
268
== k ==
269
269
Traceback (most recent call last):
@@ -281,7 +281,7 @@ Traceback (most recent call last):
281
281
File "native.py", line 61, in k
282
282
r(0)
283
283
File "native.py", line 15, in r
284
- [0][1]
284
+ [0][1] # type: ignore [index-range]
285
285
IndexError: list index out of range
286
286
== g ==
287
287
caught!
@@ -330,7 +330,7 @@ Traceback (most recent call last):
330
330
File "native.py", line 61, in k
331
331
r(0)
332
332
File "native.py", line 15, in r
333
- [0][1]
333
+ [0][1] # type: ignore [index-range]
334
334
IndexError: list index out of range
335
335
== g ==
336
336
caught!
You can’t perform that action at this time.
0 commit comments