From: Michael Tremer Date: Mon, 28 Sep 2020 15:24:31 +0000 (+0000) Subject: plugins: Remove unused variable X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c16f633ec6ce840047ea52cab21747d257ea8a8;p=collecty.git plugins: Remove unused variable Signed-off-by: Michael Tremer --- diff --git a/src/collecty/plugins/base.py b/src/collecty/plugins/base.py index 3cf630f..0418002 100644 --- a/src/collecty/plugins/base.py +++ b/src/collecty/plugins/base.py @@ -238,9 +238,6 @@ class Object(object): def __init__(self, plugin, *args, **kwargs): self.plugin = plugin - # Indicates if this object has collected its data - self.collected = False - # Initialise this object self.init(*args, **kwargs)