From e0207c437116883aa4b022fbb447cea5b3d0fec7 Mon Sep 17 00:00:00 2001 From: Justin Warren Date: Sun, 22 Jan 2023 09:01:30 +1100 Subject: [PATCH] Remove unnecessary `count` from DomainBlock object. --- src/fediblockhole/const.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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):