mirror of
https://codeberg.org/Mo8it/AdvLabDB.git
synced 2024-11-08 21:21:06 +00:00
Convert path to string
This commit is contained in:
parent
211b83e431
commit
c8ebffefc8
3 changed files with 3 additions and 3 deletions
|
@ -5,7 +5,7 @@ from pathlib import Path
|
||||||
|
|
||||||
from shared import LOCAL_BIN, LOGS_DIR, install_latest_pipx, poetry_update
|
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
|
from terminal_utils import run, step
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ from pathlib import Path
|
||||||
|
|
||||||
from shared import LOGS_DIR, REPO_DIR
|
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
|
from terminal_utils import run
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
import sys
|
import sys
|
||||||
from pathlib import Path
|
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
|
from terminal_utils import run
|
||||||
|
|
||||||
LOCAL_BIN = Path("/home/admin/.local/bin/")
|
LOCAL_BIN = Path("/home/admin/.local/bin/")
|
||||||
|
|
Loading…
Reference in a new issue