From 53a89c2c32957de73469401a24d36017e3e2b84d Mon Sep 17 00:00:00 2001 From: Cian Hughes Date: Tue, 31 Oct 2023 10:21:45 +0000 Subject: [PATCH] Fixed minor pathing bug --- src/config.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/config.py b/src/config.py index 81b34d3..dac69e2 100644 --- a/src/config.py +++ b/src/config.py @@ -5,13 +5,12 @@ from pathlib import Path -import tomllib - import docker +import tomllib CLIENT = docker.from_env(version="auto") -ROOT = Path(__file__).parent.parent +ROOT = Path(__file__).parent.parent.absolute() type ConfigLabel = str | list[str]