This repository has been archived on 2026-02-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
events/path_setup.py
giles 59a69ed320
Some checks failed
Build and Deploy / build-and-deploy (push) Has been cancelled
feat: add shared library as git submodule
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-09 23:44:15 +00:00

8 lines
217 B
Python

import sys
import os
# Add the shared library submodule to the Python path
_shared = os.path.join(os.path.dirname(os.path.abspath(__file__)), "shared_lib")
if _shared not in sys.path:
sys.path.insert(0, _shared)