From 5bb9d9ed7d91c93a77a636108a30e43de8ab6173 Mon Sep 17 00:00:00 2001 From: heliguy Date: Tue, 5 Sep 2023 03:18:16 -0400 Subject: [PATCH] Remove debug prints --- src/orphans_window.py | 2 +- src/window.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/orphans_window.py b/src/orphans_window.py index dac3d09..5809b0e 100644 --- a/src/orphans_window.py +++ b/src/orphans_window.py @@ -3,4 +3,4 @@ import subprocess import os def show_orphans_window(): - print("hi") \ No newline at end of file + x = 12 # place holder until I properly seperate the files \ No newline at end of file diff --git a/src/window.py b/src/window.py index a1dcaec..175f6b7 100644 --- a/src/window.py +++ b/src/window.py @@ -64,7 +64,6 @@ class FlattoolGuiWindow(Adw.ApplicationWindow): icon_theme.add_search_path(host_home + "/.local/share/flatpak/exports/share/icons") def main_pulser(self): - print("main pulse") if self.should_pulse: self.main_progress_bar.pulse() GLib.timeout_add(500, self.main_pulser)