From f78e50870be089fed3975bd88127a3f9a67740f0 Mon Sep 17 00:00:00 2001 From: Adrien Faure Date: Wed, 22 Nov 2023 14:40:24 +0100 Subject: [PATCH] [oar/lib/access_token] remove print --- oar/lib/access_token.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/oar/lib/access_token.py b/oar/lib/access_token.py index 31ab879e..b0c55581 100644 --- a/oar/lib/access_token.py +++ b/oar/lib/access_token.py @@ -21,8 +21,6 @@ def create_access_token( to_encode.update({"exp": expire, "date": f"{now.strftime('%Y-%m-%d %H:%M:%S')}"}) - print(to_encode) - # to get a string like this run: # openssl rand -hex 32 secret_key = config.get("API_SECRET_KEY", None)