odoo_account_ebics/account_ebics/__init__.py
2020-12-14 07:25:58 -08:00

10 lines
206 B
Python

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