From 7ef3059b693a39e27d48ecbc99bd02af2d30bf57 Mon Sep 17 00:00:00 2001 From: Matthias Hagmann <16444067+MattHag@users.noreply.github.com> Date: Wed, 28 Feb 2024 21:49:20 +0100 Subject: [PATCH] clean up: Remove editor specific marks Related #2273 --- lib/hidapi/__init__.py | 2 -- lib/hidapi/hidapi.py | 2 -- lib/hidapi/hidconsole.py | 2 -- lib/hidapi/udev.py | 2 -- lib/logitech_receiver/__init__.py | 2 -- lib/logitech_receiver/base.py | 2 -- lib/logitech_receiver/base_usb.py | 2 -- lib/logitech_receiver/common.py | 2 -- lib/logitech_receiver/descriptors.py | 2 -- lib/logitech_receiver/diversion.py | 2 -- lib/logitech_receiver/hidpp10.py | 2 -- lib/logitech_receiver/i18n.py | 2 -- lib/logitech_receiver/notify.py | 2 -- lib/logitech_receiver/settings.py | 2 -- lib/logitech_receiver/settings_templates.py | 2 -- lib/logitech_receiver/special_keys.py | 2 -- lib/logitech_receiver/status.py | 2 -- lib/solaar/__init__.py | 2 -- lib/solaar/cli/__init__.py | 2 -- lib/solaar/cli/config.py | 2 -- lib/solaar/cli/pair.py | 2 -- lib/solaar/cli/probe.py | 2 -- lib/solaar/cli/profiles.py | 2 -- lib/solaar/cli/show.py | 2 -- lib/solaar/cli/unpair.py | 2 -- lib/solaar/gtk.py | 2 -- lib/solaar/i18n.py | 2 -- lib/solaar/tasks.py | 2 -- lib/solaar/ui/__init__.py | 2 -- lib/solaar/ui/about.py | 2 -- lib/solaar/ui/action.py | 2 -- lib/solaar/ui/common.py | 2 -- lib/solaar/ui/config_panel.py | 2 -- lib/solaar/ui/diversion_rules.py | 2 -- lib/solaar/ui/icons.py | 2 -- lib/solaar/ui/notify.py | 2 -- lib/solaar/ui/pair_window.py | 2 -- lib/solaar/ui/tray.py | 2 -- lib/solaar/ui/window.py | 2 -- lib/solaar/upower.py | 2 -- 40 files changed, 80 deletions(-) diff --git a/lib/hidapi/__init__.py b/lib/hidapi/__init__.py index 0a4fe169..c3245492 100644 --- a/lib/hidapi/__init__.py +++ b/lib/hidapi/__init__.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/hidapi/hidapi.py b/lib/hidapi/hidapi.py index 8078a8a9..2fb3a8cb 100644 --- a/lib/hidapi/hidapi.py +++ b/lib/hidapi/hidapi.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/hidapi/hidconsole.py b/lib/hidapi/hidconsole.py index 3963aa7f..cfa45288 100644 --- a/lib/hidapi/hidconsole.py +++ b/lib/hidapi/hidconsole.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/hidapi/udev.py b/lib/hidapi/udev.py index a4cbfcf0..3c3dc9ca 100644 --- a/lib/hidapi/udev.py +++ b/lib/hidapi/udev.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/logitech_receiver/__init__.py b/lib/logitech_receiver/__init__.py index bb6ec749..8667a0e4 100644 --- a/lib/logitech_receiver/__init__.py +++ b/lib/logitech_receiver/__init__.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/logitech_receiver/base.py b/lib/logitech_receiver/base.py index e9f390ca..b7d41141 100644 --- a/lib/logitech_receiver/base.py +++ b/lib/logitech_receiver/base.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/logitech_receiver/base_usb.py b/lib/logitech_receiver/base_usb.py index a8c3bab2..5c0159e0 100644 --- a/lib/logitech_receiver/base_usb.py +++ b/lib/logitech_receiver/base_usb.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/logitech_receiver/common.py b/lib/logitech_receiver/common.py index 1f0c8118..17bb30f9 100644 --- a/lib/logitech_receiver/common.py +++ b/lib/logitech_receiver/common.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/logitech_receiver/descriptors.py b/lib/logitech_receiver/descriptors.py index 6f4457b1..47d78624 100644 --- a/lib/logitech_receiver/descriptors.py +++ b/lib/logitech_receiver/descriptors.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/logitech_receiver/diversion.py b/lib/logitech_receiver/diversion.py index 1c2f218a..f9c23d6e 100644 --- a/lib/logitech_receiver/diversion.py +++ b/lib/logitech_receiver/diversion.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2020 Peter Patel-Schneider ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/logitech_receiver/hidpp10.py b/lib/logitech_receiver/hidpp10.py index 8019b29b..e83f8ad4 100644 --- a/lib/logitech_receiver/hidpp10.py +++ b/lib/logitech_receiver/hidpp10.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/logitech_receiver/i18n.py b/lib/logitech_receiver/i18n.py index 896c56cf..e6766051 100644 --- a/lib/logitech_receiver/i18n.py +++ b/lib/logitech_receiver/i18n.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/logitech_receiver/notify.py b/lib/logitech_receiver/notify.py index b1f2ee53..c90a4b8e 100644 --- a/lib/logitech_receiver/notify.py +++ b/lib/logitech_receiver/notify.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2024 Solaar contributors ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/logitech_receiver/settings.py b/lib/logitech_receiver/settings.py index 9fe8ae8d..f6e3ee75 100644 --- a/lib/logitech_receiver/settings.py +++ b/lib/logitech_receiver/settings.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/logitech_receiver/settings_templates.py b/lib/logitech_receiver/settings_templates.py index 9e0ff9f4..42f422d1 100644 --- a/lib/logitech_receiver/settings_templates.py +++ b/lib/logitech_receiver/settings_templates.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/logitech_receiver/special_keys.py b/lib/logitech_receiver/special_keys.py index e847e303..88f6017b 100644 --- a/lib/logitech_receiver/special_keys.py +++ b/lib/logitech_receiver/special_keys.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/logitech_receiver/status.py b/lib/logitech_receiver/status.py index af0b2d55..c0712fe9 100644 --- a/lib/logitech_receiver/status.py +++ b/lib/logitech_receiver/status.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/solaar/__init__.py b/lib/solaar/__init__.py index ee1ea2cf..11d0e3c9 100644 --- a/lib/solaar/__init__.py +++ b/lib/solaar/__init__.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/solaar/cli/__init__.py b/lib/solaar/cli/__init__.py index c78c645a..8662836e 100644 --- a/lib/solaar/cli/__init__.py +++ b/lib/solaar/cli/__init__.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/solaar/cli/config.py b/lib/solaar/cli/config.py index 1ff62115..44b3eca2 100644 --- a/lib/solaar/cli/config.py +++ b/lib/solaar/cli/config.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/solaar/cli/pair.py b/lib/solaar/cli/pair.py index a73efca2..3d00fc4c 100644 --- a/lib/solaar/cli/pair.py +++ b/lib/solaar/cli/pair.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/solaar/cli/probe.py b/lib/solaar/cli/probe.py index 076eae07..5b4c4cf6 100644 --- a/lib/solaar/cli/probe.py +++ b/lib/solaar/cli/probe.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2020 ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/solaar/cli/profiles.py b/lib/solaar/cli/profiles.py index a4de3c2d..4d99e00c 100644 --- a/lib/solaar/cli/profiles.py +++ b/lib/solaar/cli/profiles.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/solaar/cli/show.py b/lib/solaar/cli/show.py index 0a558c61..ed859b0a 100644 --- a/lib/solaar/cli/show.py +++ b/lib/solaar/cli/show.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/solaar/cli/unpair.py b/lib/solaar/cli/unpair.py index 62f0f06a..cc2ece84 100644 --- a/lib/solaar/cli/unpair.py +++ b/lib/solaar/cli/unpair.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/solaar/gtk.py b/lib/solaar/gtk.py index 3f31bf88..8d0c0c21 100755 --- a/lib/solaar/gtk.py +++ b/lib/solaar/gtk.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# -*- python-mode -*- -# -*- coding: UTF-8 -*- ## Copyright (C) 2012-2013 Daniel Pavel ## diff --git a/lib/solaar/i18n.py b/lib/solaar/i18n.py index 77a519b8..399ef8e3 100644 --- a/lib/solaar/i18n.py +++ b/lib/solaar/i18n.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/solaar/tasks.py b/lib/solaar/tasks.py index 7e9682d6..3a2af046 100644 --- a/lib/solaar/tasks.py +++ b/lib/solaar/tasks.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# -*- python-mode -*- -# -*- coding: UTF-8 -*- ## Copyright (C) 2012-2013 Daniel Pavel ## diff --git a/lib/solaar/ui/__init__.py b/lib/solaar/ui/__init__.py index e383dfcf..1f852653 100644 --- a/lib/solaar/ui/__init__.py +++ b/lib/solaar/ui/__init__.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/solaar/ui/about.py b/lib/solaar/ui/about.py index 427c2dfa..781e5702 100644 --- a/lib/solaar/ui/about.py +++ b/lib/solaar/ui/about.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## Revisions Copyright (C) Contributors to the Solaar project. ## diff --git a/lib/solaar/ui/action.py b/lib/solaar/ui/action.py index bc96eab0..8e0b263d 100644 --- a/lib/solaar/ui/action.py +++ b/lib/solaar/ui/action.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/solaar/ui/common.py b/lib/solaar/ui/common.py index 1e223cbf..91671fd7 100644 --- a/lib/solaar/ui/common.py +++ b/lib/solaar/ui/common.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/solaar/ui/config_panel.py b/lib/solaar/ui/config_panel.py index 4e7a7ac4..e387ed9c 100644 --- a/lib/solaar/ui/config_panel.py +++ b/lib/solaar/ui/config_panel.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/solaar/ui/diversion_rules.py b/lib/solaar/ui/diversion_rules.py index b30641f4..4db1cd47 100644 --- a/lib/solaar/ui/diversion_rules.py +++ b/lib/solaar/ui/diversion_rules.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2020 Solaar ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/solaar/ui/icons.py b/lib/solaar/ui/icons.py index 9be7e6ab..f6b847e0 100644 --- a/lib/solaar/ui/icons.py +++ b/lib/solaar/ui/icons.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/solaar/ui/notify.py b/lib/solaar/ui/notify.py index 4eb5daad..e05af856 100644 --- a/lib/solaar/ui/notify.py +++ b/lib/solaar/ui/notify.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/solaar/ui/pair_window.py b/lib/solaar/ui/pair_window.py index f8f22f27..9dfd5a07 100644 --- a/lib/solaar/ui/pair_window.py +++ b/lib/solaar/ui/pair_window.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/solaar/ui/tray.py b/lib/solaar/ui/tray.py index bc394a8b..7c682c60 100644 --- a/lib/solaar/ui/tray.py +++ b/lib/solaar/ui/tray.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/solaar/ui/window.py b/lib/solaar/ui/window.py index fb86d497..56fd1929 100644 --- a/lib/solaar/ui/window.py +++ b/lib/solaar/ui/window.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify diff --git a/lib/solaar/upower.py b/lib/solaar/upower.py index 17b6709c..650f5ae8 100644 --- a/lib/solaar/upower.py +++ b/lib/solaar/upower.py @@ -1,5 +1,3 @@ -# -*- python-mode -*- - ## Copyright (C) 2012-2013 Daniel Pavel ## ## This program is free software; you can redistribute it and/or modify