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 0a3743a commit b1a8a00Copy full SHA for b1a8a00
stubs/flake8-simplify/flake8_simplify/constants.pyi
@@ -1,5 +1,6 @@
1
import ast
2
+from typing import Final
3
-BOOL_CONST_TYPES: tuple[type[ast.Constant]]
4
-AST_CONST_TYPES: tuple[type[ast.Constant]]
5
-STR_TYPES: tuple[type[ast.Constant]]
+BOOL_CONST_TYPES: Final[tuple[type[ast.Constant]]]
+AST_CONST_TYPES: Final[tuple[type[ast.Constant]]]
6
+STR_TYPES: Final[tuple[type[ast.Constant]]]
0 commit comments