Skip to content
This repository was archived by the owner on Jun 11, 2024. It is now read-only.

Commit 5ee0ac6

Browse files
committed
bugfix: del model attributes
1 parent 7579659 commit 5ee0ac6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

atomx/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def __setattr__(self, key, value):
6767

6868
def __delattr__(self, item):
6969
if item in self._dirty:
70-
self._dirty.remove[item]
70+
self._dirty.remove(item)
7171
else:
7272
self._attributes[item] = None
7373
self._dirty.add(item)

0 commit comments

Comments
 (0)