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()