From a164a8fa9bbcac06248904868ce71c1bbed33fad Mon Sep 17 00:00:00 2001 From: Azalea <22280294+hykilpikonna@users.noreply.github.com> Date: Thu, 12 Mar 2026 01:29:47 -0400 Subject: [PATCH] [F] Fix path --- src/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.py b/src/utils.py index 05dcf23..76cf79c 100644 --- a/src/utils.py +++ b/src/utils.py @@ -5,7 +5,7 @@ from pathlib import Path from typing import NamedTuple -CONFIG = tomllib.loads((Path(__file__).parent / "config.toml").read_text()) +CONFIG = tomllib.loads((Path(__file__).parent.parent / "config.toml").read_text()) def gen_sha(channel: str, uid: int, parent: str):