mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-06 05:01:14 -07:00
5 lines
227 B
Python
5 lines
227 B
Python
# A Python "namespace package" http://www.python.org/dev/peps/pep-0382/
|
|
# This always goes inside of a namespace package's __init__.py
|
|
from pkgutil import extend_path
|
|
|
|
__path__ = extend_path(__path__, __name__) # type: ignore
|