From 2ae20aad367ff457102fe50c5bab5b1bba8d4cee Mon Sep 17 00:00:00 2001 From: Max Maass <1688580+malexmave@users.noreply.github.com> Date: Tue, 14 Jan 2025 12:52:42 +0100 Subject: [PATCH] Remove surplus print statement This print statement was left over from previous debugging and I forgot to remove it. --- kcwarden/subcommands/download.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kcwarden/subcommands/download.py b/kcwarden/subcommands/download.py index a82fc7c..34dc2af 100644 --- a/kcwarden/subcommands/download.py +++ b/kcwarden/subcommands/download.py @@ -103,7 +103,6 @@ def download_config(args: argparse.Namespace): print("Unexpected auth_method provided - please file a bug report, this should be impossible") return 1 - print(session_token) export = requests.post( KC_EXPORT_URL.format(base_url, realm), headers={"Authorization": f"Bearer {session_token}"} ).json()