import socket import sys class SimpleClient: def __init__(self, client_socket, statusMessage): self.client_socket = client_socket self.statusMes
class SimpleClient: def __init__(self, client_socket, statusMessage):
Your class taking two arguments, but when you call it;
client = SimpleClient()
You didn't write any arguments. So you have to put 2 arguments they may be None.
None