activity.py: less debug

This commit is contained in:
Thomas Farstrike
2025-11-09 00:16:33 +01:00
parent e1505320d4
commit 401681d684
+1 -1
View File
@@ -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: