1
0
Fork 0
mirror of https://codeberg.org/Mo8it/AdvLabDB.git synced 2024-09-19 18:31:16 +00:00

Convert path to string

This commit is contained in:
Mo 2022-05-17 12:09:54 +02:00
parent 211b83e431
commit c8ebffefc8
3 changed files with 3 additions and 3 deletions

View file

@ -5,7 +5,7 @@ from pathlib import Path
from shared import LOCAL_BIN, LOGS_DIR, install_latest_pipx, poetry_update
sys.path.insert(0, Path(__file__).parent.parent.absolute())
sys.path.insert(0, str(Path(__file__).parent.parent.absolute()))
from terminal_utils import run, step

View file

@ -5,7 +5,7 @@ from pathlib import Path
from shared import LOGS_DIR, REPO_DIR
sys.path.insert(0, Path(__file__).parent.parent.absolute())
sys.path.insert(0, str(Path(__file__).parent.parent.absolute()))
from terminal_utils import run

View file

@ -3,7 +3,7 @@
import sys
from pathlib import Path
sys.path.insert(0, Path(__file__).parent.parent.absolute())
sys.path.insert(0, str(Path(__file__).parent.parent.absolute()))
from terminal_utils import run
LOCAL_BIN = Path("/home/admin/.local/bin/")