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 992a954 commit 2e7a702
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions watson/__init__.py
@@ -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 2e7a702

Please sign in to comment.