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 6868d34 commit 6755c87Copy full SHA for 6755c87
mypyc/ir/class_ir.py
@@ -118,7 +118,9 @@ def __init__(
118
# added if is_generated is False)
119
self.needs_getseters = False
120
# A value type is a class that can be passed by value instead of by reference.
121
- self.is_value_type = self.is_ext_class and self.is_immutable and not self.has_dict and is_value_type
+ self.is_value_type = (
122
+ self.is_ext_class and self.is_immutable and not self.has_dict and is_value_type
123
+ )
124
# Is this class declared as serializable (supports copy.copy
125
# and pickle) using @mypyc_attr(serializable=True)?
126
#
0 commit comments