We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74a0f5e commit aa17694Copy full SHA for aa17694
fire/parser.py
@@ -19,7 +19,7 @@
19
import sys
20
21
if sys.version_info[0:2] < (3, 8):
22
- _StrNode = ast.Str # type: ignore # deprecated but needed for Python < 3.8
+ _StrNode = ast.Str # type: ignore # pylint: disable=no-member # deprecated but needed for Python < 3.8
23
else:
24
_StrNode = ast.Constant
25
0 commit comments