diff --git a/core/scripts/hysteria2/kickuser.py b/core/scripts/hysteria2/kickuser.py index 35c505f..465e86c 100644 --- a/core/scripts/hysteria2/kickuser.py +++ b/core/scripts/hysteria2/kickuser.py @@ -48,7 +48,7 @@ def main(): try: api_secret = get_api_secret(CONFIG_FILE) # print(api_secret) - print(f"Kicking user: {username_to_kick}") + # print(f"Kicking user: {username_to_kick}") client = Hysteria2Client( base_url=API_BASE_URL, @@ -57,7 +57,7 @@ def main(): client.kick_clients([username_to_kick]) - print(f"User '{username_to_kick}' kicked successfully.") + # print(f"User '{username_to_kick}' kicked successfully.") sys.exit(0) except (FileNotFoundError, KeyError, ValueError, json.JSONDecodeError) as e: