mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
10 lines
241 B
Python
10 lines
241 B
Python
# -*- coding: utf-8 -*-
|
|
try:
|
|
from . import models
|
|
from . import wizard
|
|
from . import report
|
|
except ImportError:
|
|
import logging
|
|
logging.getLogger(__name__).warn(
|
|
"report_xlsx_helpers not available in addons path")
|