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 9a84a9e commit 933fd67Copy full SHA for 933fd67
suitcase/structure.py
@@ -299,7 +299,7 @@ def __init__(self, **kwargs):
299
self._sorted_fields.append((key, field))
300
self._packer = Packer(self._sorted_fields, self._crc_field)
301
for key, value in kwargs.items():
302
- self.__setattr__(key, value)
+ setattr(self, key, value)
303
304
def __getattr__(self, key):
305
k2f = self.__dict__.get('_key_to_field', {})
0 commit comments