Skip to content

Commit 60e7688

Browse files
committed
Path Fix 2
1 parent f17f6bf commit 60e7688

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils/appdata.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
def read(filepath: str) -> str | None:
1212
filepath = join(APP_DIR, filepath)
13-
13+
1414
if not exists(filepath):
1515
return None
1616

@@ -33,7 +33,7 @@ def read_config(
3333
config: str,
3434
cached_return: bool = True
3535
) -> str | None:
36-
config_path: str = f"../configs/{config}.txt"
36+
config_path: str = f"configs/{config}.txt"
3737
if cached_return and config_path in cached_data:
3838
return cached_data[config_path]
3939

0 commit comments

Comments
 (0)