We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d6db25d + bf50992 commit 1a797f2Copy full SHA for 1a797f2
ckanext/__init__.py
@@ -1,7 +1,8 @@
1
# this is a namespace package
2
try:
3
import pkg_resources
4
- pkg_resources.declare_namespace(__name__)
+ # type_ignore_reason: reportAttributeAccessIssue
5
+ pkg_resources.declare_namespace(__name__) # type: ignore
6
except ImportError:
7
import pkgutil
8
__path__ = pkgutil.extend_path(__path__, __name__)
0 commit comments