This commit is contained in:
Jack Robison 2022-08-09 15:42:57 -04:00
parent 23599ee1b2
commit c6cc3cbd26
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2

View file

@ -430,11 +430,11 @@ class DBState(typing.NamedTuple):
@property
def catching_up(self) -> bool:
return self.bit_fields & 1 == 1
return self.bit_fields & 1 != 0
@property
def index_address_statuses(self) -> bool:
return self.bit_fields & 2 == 1
return self.bit_fields & 2 != 0
@property
def expanded(self):