From de4daa8f1e3fcfc27b09395a596a6addcc074f9e Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sun, 30 Nov 2025 14:46:56 +0100 Subject: [PATCH] Fix indentation in concept-maker_gui.py --- concept-maker_gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concept-maker_gui.py b/concept-maker_gui.py index 04f439e..d5c6a8a 100644 --- a/concept-maker_gui.py +++ b/concept-maker_gui.py @@ -1089,7 +1089,7 @@ class App(TkinterDnD.Tk): # type: ignore if p.is_dir(): for q in p.rglob('*'): if q.is_file(): - final.append(q) + final.append(q) elif p.exists(): final.append(p) return final