mirror of
https://codeberg.org/Mo8it/AdvLabDB.git
synced 2024-11-12 21:40:41 +00:00
Fix missing dependencies
This commit is contained in:
parent
6b0b6e587c
commit
a0711f7eaf
1 changed files with 9 additions and 1 deletions
|
@ -1,13 +1,21 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
from datetime import datetime
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
script_dir = Path(__file__).parent.absolute()
|
script_dir = Path(__file__).parent.absolute()
|
||||||
|
|
||||||
sys.path.insert(0, str(script_dir))
|
sys.path.insert(0, str(script_dir))
|
||||||
|
|
||||||
from shared import box, install_latest_pipx, local_bin, poetry_install_latest, spaced_hl
|
from shared import (
|
||||||
|
box,
|
||||||
|
install_latest_pipx,
|
||||||
|
local_bin,
|
||||||
|
poetry_install_latest,
|
||||||
|
run,
|
||||||
|
spaced_hl,
|
||||||
|
)
|
||||||
|
|
||||||
spaced_hl()
|
spaced_hl()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue