File tree 2 files changed +4
-2
lines changed 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -223,7 +223,8 @@ class Errors:
223
223
# (path -> line -> error-codes)
224
224
ignored_lines : dict [str , dict [int , list [str ]]]
225
225
226
- # Lines that were skipped during semantic analysis (would not be type-checked).
226
+ # Lines that were skipped during semantic analysis e.g. due to ALWAYS_FALSE, MYPY_FALSE,
227
+ # or platform/version checks. Those lines would not be type-checked.
227
228
skipped_lines : dict [str , set [int ]]
228
229
229
230
# Lines on which an error was actually ignored.
Original file line number Diff line number Diff line change @@ -314,7 +314,8 @@ class MypyFile(SymbolNode):
314
314
# If the value is empty, ignore all errors; otherwise, the list contains all
315
315
# error codes to ignore.
316
316
ignored_lines : dict [int , list [str ]]
317
- # Lines that were skipped during semantic analysis (would not be type-checked).
317
+ # Lines that were skipped during semantic analysis e.g. due to ALWAYS_FALSE, MYPY_FALSE,
318
+ # or platform/version checks. Those lines would not be type-checked.
318
319
skipped_lines : set [int ]
319
320
# Is this file represented by a stub file (.pyi)?
320
321
is_stub : bool
You can’t perform that action at this time.
0 commit comments