From 7e774a5385517e4c5bfcee836484606071cac1ab Mon Sep 17 00:00:00 2001 From: Tycho Andersen Date: Mon, 4 Feb 2019 19:11:27 -0700 Subject: [PATCH] ignore another new pep8 complaint /home/travis/build/qtile/qtile/libqtile/widget/systray.py:88:6: N815 variable 'handle_UnmapNotify' in class scope should not be mixedCase from https://travis-ci.org/qtile/qtile/jobs/487956864 Signed-off-by: Tycho Andersen --- libqtile/widget/systray.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libqtile/widget/systray.py b/libqtile/widget/systray.py index a990ef02e9..62193b0d21 100644 --- a/libqtile/widget/systray.py +++ b/libqtile/widget/systray.py @@ -85,7 +85,7 @@ def handle_DestroyNotify(self, event): # noqa: N802 self.systray.bar.draw() return False - handle_UnmapNotify = handle_DestroyNotify + handle_UnmapNotify = handle_DestroyNotify # noqa: N815 class Systray(window._Window, base._Widget):