File tree 3 files changed +1
-3
lines changed
3 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -288,7 +288,6 @@ def _is_iterator(node):
288
288
if isinstance (node , astroid .bases .Generator ):
289
289
# Generators can be iterated.
290
290
return True
291
- # TODO: 2.14: Should be covered by https://github.com/PyCQA/astroid/pull/1475
292
291
if isinstance (node , nodes .ComprehensionScope ):
293
292
# Comprehensions can be iterated.
294
293
return True
Original file line number Diff line number Diff line change @@ -1182,7 +1182,6 @@ def _supports_protocol(
1182
1182
if protocol_callback (value ):
1183
1183
return True
1184
1184
1185
- # TODO: 2.14: Should be covered by https://github.com/PyCQA/astroid/pull/1475
1186
1185
if isinstance (value , nodes .ComprehensionScope ):
1187
1186
return True
1188
1187
Original file line number Diff line number Diff line change @@ -261,7 +261,7 @@ def __call__(
261
261
values : str | Sequence [Any ] | None ,
262
262
option_string : str | None = "--generate-rcfile" ,
263
263
) -> None :
264
- # TODO: 2.14 : Deprecate this after discussion about this removal has been completed.
264
+ # TODO: 2.15 : Deprecate this after discussion about this removal has been completed.
265
265
with warnings .catch_warnings ():
266
266
warnings .filterwarnings ("ignore" , category = DeprecationWarning )
267
267
self .run .linter .generate_config (skipsections = ("Commands" ,))
You can’t perform that action at this time.
0 commit comments