From ad20fe5e286bf88439bd04a5a2cce21efe9033a3 Mon Sep 17 00:00:00 2001 From: hxr404 <55095883+hxr404@users.noreply.github.com> Date: Mon, 6 Jun 2022 02:30:25 +0200 Subject: [PATCH] style(autoname-workspaces) Remove double Whitespace --- contrib/autoname-workspaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/autoname-workspaces.py b/contrib/autoname-workspaces.py index 3ec399280..a960e9b78 100755 --- a/contrib/autoname-workspaces.py +++ b/contrib/autoname-workspaces.py @@ -26,7 +26,7 @@ def icon_for_window(window): if window.app_id is not None and len(window.app_id) > 0: name = window.app_id.lower() elif window.window_class is not None and len(window.window_class) > 0: - name = window.window_class.lower() + name = window.window_class.lower() if name in WINDOW_ICONS: return WINDOW_ICONS[name]