Skip to content

Commit

Permalink
chore: remove redundant code
Browse files Browse the repository at this point in the history
  • Loading branch information
simoncoulton committed Oct 3, 2019
1 parent bb06567 commit 22e3473
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions watson/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
# -*- coding: utf-8 -*-
# Namespaced packages, see http://www.python.org/dev/peps/pep-0420/

try:
__import__('pkg_resources').declare_namespace(__name__)
except ImportError: # pragma: no cover
from pkgutil import extend_path # pragma: no cover
__path__ = extend_path(__path__, __name__) # pragma: no cover
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)

0 comments on commit 22e3473

Please sign in to comment.