diff --git a/src/fediblockhole/const.py b/src/fediblockhole/const.py index 7ed9f48..93cf2ef 100644 --- a/src/fediblockhole/const.py +++ b/src/fediblockhole/const.py @@ -123,8 +123,7 @@ class DomainBlock(object): reject_media: bool=False, reject_reports: bool=False, obfuscate: bool=False, - id: int=None, - count: int=0): + id: int=None): """Initialize the DomainBlock """ self.domain = domain @@ -135,7 +134,6 @@ class DomainBlock(object): self.reject_reports = reject_reports self.obfuscate = obfuscate self.id = id - self.count = 0 @property def severity(self):