[lib/domain] ajout du dossier courant dans le path pour import de librairies dans le dossier du projet

This commit is contained in:
Maxime Alves LIRMM@home 2021-04-24 23:54:18 +02:00
parent 10b1960f4e
commit 5276833afe
1 changed files with 2 additions and 0 deletions

View File

@ -3,6 +3,7 @@
lib/domain.py The domain-scoped utility functions
"""
import sys
import importlib
import logging
from types import ModuleType
@ -185,6 +186,7 @@ def d_domains(config) -> Dict[str, ModuleType]:
return {}
try:
sys.path.append('.')
return {
domain: importlib.import_module(domain)
for domain, _ in config.items('domains')