Skip to content

Commit b1a8a00

Browse files
committed
Use Final
1 parent 0a3743a commit b1a8a00

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import ast
2+
from typing import Final
23

3-
BOOL_CONST_TYPES: tuple[type[ast.Constant]]
4-
AST_CONST_TYPES: tuple[type[ast.Constant]]
5-
STR_TYPES: tuple[type[ast.Constant]]
4+
BOOL_CONST_TYPES: Final[tuple[type[ast.Constant]]]
5+
AST_CONST_TYPES: Final[tuple[type[ast.Constant]]]
6+
STR_TYPES: Final[tuple[type[ast.Constant]]]

0 commit comments

Comments
 (0)