Spaces:
Running
Running
File size: 354 Bytes
5301c48 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import os
import sys
# Add workspace folders to PYTHONPATH
workspace_folders = [os.path.join(os.path.dirname(__file__), "..", "src"), os.path.dirname(os.path.dirname(__file__))]
for folder in workspace_folders:
if folder not in sys.path:
sys.path.insert(0, folder)
# This file is intentionally empty to make the directory a Python package
|