This commit is contained in:
Alessio Fabrizio 2024-10-08 14:17:42 +02:00
parent 89afe6c537
commit c22c52470e
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
# encoding: utf-8
# this is a namespace package
try:
import pkg_resources
pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)