From 401681d68497cf1c9b6e53d6e9ca793e4af668c1 Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Sun, 9 Nov 2025 00:16:33 +0100 Subject: [PATCH] activity.py: less debug --- internal_filesystem/lib/mpos/app/activity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal_filesystem/lib/mpos/app/activity.py b/internal_filesystem/lib/mpos/app/activity.py index e7432100..a46400f0 100644 --- a/internal_filesystem/lib/mpos/app/activity.py +++ b/internal_filesystem/lib/mpos/app/activity.py @@ -75,7 +75,7 @@ class Activity: # Execute a function if the Activity is in the foreground def if_foreground(self, func, *args, **kwargs): if self._has_foreground: - print(f"executing {func} with args {args} and kwargs {kwargs}") + #print(f"executing {func} with args {args} and kwargs {kwargs}") result = func(*args, **kwargs) return result else: