Add call to super init.

This commit is contained in:
voussoir 2023-07-22 17:17:06 -07:00
parent eb4e381022
commit 5a06d78a65

View file

@ -808,6 +808,7 @@ class Object(metaclass=abc.ABCMeta):
''' '''
Your subclass should call super().__init__(database). Your subclass should call super().__init__(database).
''' '''
super().__init__()
# Used for transaction # Used for transaction
self._worms_database = database self._worms_database = database
self.deleted = False self.deleted = False