mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-23 23:48:16 +01:00
14 lines
245 B
Python
14 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)
|