remove unused closed attribute

This commit is contained in:
Jack Robison 2022-02-11 15:50:16 -05:00
parent 937adbf439
commit e6c275f86e
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2

View file

@ -130,10 +130,6 @@ class BasePrefixDB:
def try_catch_up_with_primary(self): def try_catch_up_with_primary(self):
self._db.try_catch_up_with_primary() self._db.try_catch_up_with_primary()
@property
def closed(self) -> bool:
return self._db.is_closed
def stage_raw_put(self, key: bytes, value: bytes): def stage_raw_put(self, key: bytes, value: bytes):
self._op_stack.append_op(RevertablePut(key, value)) self._op_stack.append_op(RevertablePut(key, value))