check if fintech lib is installed

This commit is contained in:
Luc De Meyer 2020-11-27 10:54:29 +01:00
parent a673a4bb3d
commit 04a808b5c0

View File

@ -1,2 +1,9 @@
from . import models import logging
from . import wizards
_logger = logging.getLogger(__name__)
try:
from . import models
from . import wizards
except Exception:
_logger.warning("Import Error, check if fintech lib has been installed")