signature_function/notebooks/path.py

9 lines
152 B
Python
Raw Permalink Normal View History

2021-01-13 21:21:05 +01:00
#!/usr/bin/env python3
import sys
import os
module_path = os.path.abspath(os.pardir)
if module_path not in sys.path:
sys.path.append(module_path)