move to main
Some checks failed
/ job (push) Failing after 9m43s

This commit is contained in:
Marc Beninca 2024-08-07 18:47:11 +02:00
parent f659487b86
commit b53ddb743e
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
2 changed files with 6 additions and 5 deletions

View file

@ -3,11 +3,6 @@
__version__ = "0.0.1" __version__ = "0.0.1"
import sys import sys
import env
sys.path.insert(0, env.SPCD_PYTHON_VENV_PACKAGES)
from pathlib import Path from pathlib import Path
from rwx import fs from rwx import fs

View file

@ -2,6 +2,12 @@
"""Entry point.""" """Entry point."""
import sys
import env
if env.SPCD_PYTHON_VENV_PACKAGES not in sys.path:
sys.path.insert(0, env.SPCD_PYTHON_VENV_PACKAGES)
import spcd import spcd
if __name__ == "__main__": if __name__ == "__main__":