Skip to content
Snippets Groups Projects

Suppress high_level_api import warning

All threads resolved!
@@ -39,7 +39,7 @@ from .fill_xlsx import fill_template
# The high_level_api import would normally warn about the API being
# experimental. We know this, so suppress the warning.
logging.disable(logging.WARNING)
from linkahead.high_level_api import convert_to_python_object
from linkahead.high_level_api import convert_to_python_object # noqa: E402, pylint: disable=wrong-import-position
logging.disable(logging.NOTSET)
Loading