From 43dd9f18040cc76f07cbe9318b78c83805970520 Mon Sep 17 00:00:00 2001 From: Juan Perez Tejada Date: Sat, 9 Dec 2023 01:46:48 -0600 Subject: [PATCH] Solve pylint complains --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 57eaa06..e74df85 100644 --- a/app.py +++ b/app.py @@ -21,8 +21,8 @@ def api_message(api_key): """Inform if the api key is set.""" if api_key is None: return st.warning("Add your OpenAI API key") - else: - return st.success("Your API key is setup ") + + return st.success("Your API key is setup ") def set_api_key():