8 lines
197 B
Python
8 lines
197 B
Python
|
|
#!/usr/bin/env python3
|
||
|
|
import sys
|
||
|
|
from lawrisk.services import licensing_repo
|
||
|
|
print(f"Module file: {licensing_repo.__file__}")
|
||
|
|
print(f"Python path:")
|
||
|
|
for path in sys.path:
|
||
|
|
print(f" - {path}")
|