From 5a06d78a65df13be6f5d37c82ef2004354f01f83 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Sat, 22 Jul 2023 17:17:06 -0700 Subject: [PATCH] Add call to super init. --- voussoirkit/worms.py | 1 + 1 file changed, 1 insertion(+) diff --git a/voussoirkit/worms.py b/voussoirkit/worms.py index aa0ffcb..a1e34fa 100644 --- a/voussoirkit/worms.py +++ b/voussoirkit/worms.py @@ -808,6 +808,7 @@ class Object(metaclass=abc.ABCMeta): ''' Your subclass should call super().__init__(database). ''' + super().__init__() # Used for transaction self._worms_database = database self.deleted = False