Skip to content
Snippets Groups Projects
Commit 676904b0 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

remove logger.warn

parent 358fad94
No related branches found
No related tags found
No related merge requests found
# v2.2.12
* bugfix where import_from would not pass all parameters to child calls
* removed debug logs from import_from
# v2.2.11
......
# coding=UTF-8
__version__ = '2.2.12a1'
__version__ = '2.2.12a2'
......@@ -40,8 +40,6 @@ def import_from(path: tp.List[str], package_prefix: str, all_: tp.List[str],
if modname.startswith('_') and skip_single_underscores:
continue
module = importlib.import_module(package_prefix + '.' + modname)
logger.warning(repr(package_prefix))
logger.warning(repr(modname))
try:
mod_all = module.__all__
except AttributeError:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment