From 1088517cd5b9dfee97b1b3795b1c6d1a5c9480cc Mon Sep 17 00:00:00 2001 From: Kharec Date: Sat, 6 Dec 2025 15:57:05 +0100 Subject: [PATCH] refactor: reduce code --- main.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/main.py b/main.py index 2e41388..847bcaf 100644 --- a/main.py +++ b/main.py @@ -725,8 +725,6 @@ def authenticate(): if __name__ == "__main__": - auth, client = authenticate() app = Auditui() - app.auth = auth - app.client = client + app.auth, app.client = authenticate() app.run()