Fixed minor pathing bug

This commit is contained in:
Cian Hughes
2023-10-31 10:21:45 +00:00
parent 289922bea7
commit 53a89c2c32

View File

@@ -5,13 +5,12 @@
from pathlib import Path from pathlib import Path
import tomllib
import docker import docker
import tomllib
CLIENT = docker.from_env(version="auto") CLIENT = docker.from_env(version="auto")
ROOT = Path(__file__).parent.parent ROOT = Path(__file__).parent.parent.absolute()
type ConfigLabel = str | list[str] type ConfigLabel = str | list[str]