Skip to content
Snippets Groups Projects

Fixes UserWarning: Module bob was already imported from ...

Closed André Anjos requested to merge importwarning into master
3 files
+ 4
0
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 1
0
# see https://docs.python.org/3/library/pkgutil.html
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
__import__('pkg_resources').declare_namespace(__name__)
Loading