summaryrefslogtreecommitdiff
path: root/dev-python/system_hotkey/files
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/system_hotkey/files
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/system_hotkey/files')
-rw-r--r--dev-python/system_hotkey/files/system_hotkey-1.0.3-fix-collections-iterable.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/dev-python/system_hotkey/files/system_hotkey-1.0.3-fix-collections-iterable.patch b/dev-python/system_hotkey/files/system_hotkey-1.0.3-fix-collections-iterable.patch
deleted file mode 100644
index 265c32a5f096..000000000000
--- a/dev-python/system_hotkey/files/system_hotkey-1.0.3-fix-collections-iterable.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-system_hotkey was written for a previous version of Python that had
-collections.Iterable available. That moved under collections.abc in a
-later release.
-
---- a/system_hotkey/system_hotkey.py
-+++ b/system_hotkey/system_hotkey.py
-@@ -281,7 +281,7 @@ class MixIn():
-
- thread safe
- '''
-- assert isinstance(hotkey, collections.Iterable) and type(hotkey) not in (str, bytes)
-+ assert isinstance(hotkey, collections.abc.Iterable) and type(hotkey) not in (str, bytes)
- if self.consumer == 'callback' and not callback:
- raise TypeError('Function register requires callback argument in non sonsumer mode')
-