From 82a78e705333b2dc851a89be868f15d4a5ce9a46 Mon Sep 17 00:00:00 2001 From: mirai Date: Fri, 3 Oct 2025 20:58:44 +0300 Subject: [PATCH] Update client.py --- cmd_chat/client/client.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/cmd_chat/client/client.py b/cmd_chat/client/client.py index c1dd387..11f795b 100644 --- a/cmd_chat/client/client.py +++ b/cmd_chat/client/client.py @@ -160,12 +160,3 @@ class Client(RSAService, RichClientRenderer): th.start() for th in threads: th.join() - - -if __name__ == '__main__': - Client( - server=input("server ip:\n"), - port=int(input("server port: \n")), - username=input("username:\n").replace(" ", "").lower(), - password=input("password:\n") - ).run()