From 98acb3745f50e84befdb951652f61be15685af97 Mon Sep 17 00:00:00 2001 From: Jaehun You Date: Thu, 21 Nov 2024 20:02:48 +0900 Subject: [PATCH] Remove code for debugging See also: #17 --- wlm_server/operation/views.py | 1 - 1 file changed, 1 deletion(-) diff --git a/wlm_server/operation/views.py b/wlm_server/operation/views.py index 1965090..07957fe 100644 --- a/wlm_server/operation/views.py +++ b/wlm_server/operation/views.py @@ -22,7 +22,6 @@ def get_running_status(ch: int) -> tuple[bool, bool]: ) # latest operations for each channel and user is_wlm_running = any(op.on for op in latest_operations) is_channel_running = any(op.channel.channel == ch and op.on for op in latest_operations) - print(is_wlm_running, is_channel_running) return is_wlm_running, is_channel_running