From 72d6487bb5b66e8144f7389152bc624b9c8c4120 Mon Sep 17 00:00:00 2001 From: alexjanousekGSA Date: Mon, 3 Feb 2025 12:11:20 -0500 Subject: [PATCH] Removed print statement --- app/main/views/dashboard.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/main/views/dashboard.py b/app/main/views/dashboard.py index 0557a2111..4ebdf0cfa 100644 --- a/app/main/views/dashboard.py +++ b/app/main/views/dashboard.py @@ -83,7 +83,6 @@ def get_daily_stats(service_id): # Get timezone from request (default to UTC if not provided) user_timezone = request.args.get("timezone", "UTC") - print(f"Detected User Timezone test124: {user_timezone}") stats = service_api_client.get_service_notification_statistics_by_day( service_id, start_date=date_range["start_date"], days=date_range["days"], timezone=user_timezone