Skip to content

Commit 2880cef

Browse files
Remove unused tkinter imports in gui_f3_utils.py to clean up the codebase.
1 parent 6510a2f commit 2880cef

File tree

5 files changed

+387
-395
lines changed

5 files changed

+387
-395
lines changed

tools/code/common.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
from dotenv import dotenv_values, find_dotenv
55

66
config = dotenv_values(find_dotenv())
7-
DATA_DIR = config["DATA_DIR"]
7+
DATA_DIR = config["DATA_DIR"]
88
OUTPUT_DIR = config["OUTPUT_DIR"]
9-
CACHE_DIR = config["CACHE_DIR"]
9+
CACHE_DIR = config["CACHE_DIR"]
1010

1111
# Ensure output and cache dirs exist
1212
os.makedirs(OUTPUT_DIR, exist_ok=True)

0 commit comments

Comments
 (0)