mirror of
https://github.com/YunoHost-Apps/zwave-js-ui_ynh.git
synced 2024-09-03 18:06:00 +02:00
13 lines
245 B
Python
13 lines
245 B
Python
import importlib
|
|
|
|
try:
|
|
import importlib.util
|
|
except ImportError:
|
|
pass
|
|
|
|
|
|
try:
|
|
module_from_spec = importlib.util.module_from_spec
|
|
except AttributeError:
|
|
def module_from_spec(spec):
|
|
return spec.loader.load_module(spec.name)
|