summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2021-09-17 14:59:19 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-09-17 21:32:51 +0100
commit01152c9410ba00274c8415a5d914dc33dfd0cf46 (patch)
tree72168095ed660294376f68253c929bf16703dd1f /meta/lib
parente9715d4234eb7b45dee8b323799014646f0a1b07 (diff)
downloadopenembedded-core-01152c9410ba00274c8415a5d914dc33dfd0cf46.tar.gz
meta: correct collections vs collections.abc deprecation
collections.abc is available since 3.3 and doesn't need special handling. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oe/maketype.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/meta/lib/oe/maketype.py b/meta/lib/oe/maketype.py
index d929c8b3e5..d36082c535 100644
--- a/meta/lib/oe/maketype.py
+++ b/meta/lib/oe/maketype.py
@@ -10,12 +10,7 @@ the arguments of the type's factory for details.
import inspect
import oe.types as types
-try:
- # Python 3.7+
- from collections.abc import Callable
-except ImportError:
- # Python < 3.7
- from collections import Callable
+from collections.abc import Callable
available_types = {}