From b05dc5c081acd9b0400e49e4e44e9d469467a80b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Tue, 18 Sep 2018 19:02:48 +0200 Subject: [PATCH] Fix undefined-loop-variable pylint error --- gajim/htmltextview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gajim/htmltextview.py b/gajim/htmltextview.py index 80bba6572..0bf958ab4 100644 --- a/gajim/htmltextview.py +++ b/gajim/htmltextview.py @@ -498,7 +498,7 @@ class HtmlHandler(xml.sax.handler.ContentHandler): log.warning('Style attribute "%s" not yet implemented', style) else: __style_methods[style] = method - del style + del style # pylint: disable=undefined-loop-variable # -- def _get_style_tags(self):