Files
Claude Project Manager 6b9b6d4f20 Initial commit
2025-09-20 21:31:04 +02:00

14 Zeilen
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)