removed main from the server module. forgot it was there

This commit is contained in:
Greg Gauthier 2020-10-14 22:12:47 +01:00
parent 27acbb2be3
commit 3b875f2233
1 changed files with 1 additions and 5 deletions

View File

@ -29,7 +29,3 @@ class EchoServer:
response = "Received: " + data
conn.sendall(response.encode())
conn.close()
if __name__ == '__main__':
EchoServer()