lan can now properly connect

This commit is contained in:
Kevin Froman 2020-03-23 03:39:57 -05:00
parent 2c8f1fdf99
commit b5e57da191
4 changed files with 10 additions and 13 deletions

View file

@ -22,11 +22,11 @@ from utils.bettersleep import better_sleep
class Client:
def __init__(self, peer_list: List):
self.peers = peer_list
def __init__(self):
self.peers = []
return
def start(self):
while True:
print(1, self.peers)
print(1, self.peers, type(self.peers))
better_sleep(1)