Skip to content

Commit 711fc23

Browse files
authored
Stop serializing Var.is_ready; it's not important and it may vary (#4352)
Related to #4346 (but does not necessarily fix it)
1 parent e7231cc commit 711fc23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypy/nodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ class Var(SymbolNode):
616616
is_suppressed_import = False
617617

618618
FLAGS = [
619-
'is_self', 'is_ready', 'is_initialized_in_class', 'is_staticmethod',
619+
'is_self', 'is_initialized_in_class', 'is_staticmethod',
620620
'is_classmethod', 'is_property', 'is_settable_property', 'is_suppressed_import',
621621
'is_classvar', 'is_abstract_var'
622622
]

0 commit comments

Comments
 (0)