Skip to content
Snippets Groups Projects
Commit 5d24e635 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

adjustment for Python 3.5

parent c5f93108
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ class Immutable(metaclass=ImmutableMetaType):
>>> self.attribute = 'value'
"""
__locked_for_writes: bool = False
__locked_for_writes = False
# Following make this class immutable
def __setattr__(self, attr, value):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment