7 lines
127 B
Python
7 lines
127 B
Python
|
import pkgutil
|
||
|
import os.path
|
||
|
__path__ = [
|
||
|
os.path.abspath(path)
|
||
|
for path in pkgutil.extend_path(__path__, __name__)
|
||
|
]
|