diff --git a/src/cli/client.py b/src/cli/client.py index e3e7241..e96620a 100644 --- a/src/cli/client.py +++ b/src/cli/client.py @@ -12,7 +12,7 @@ client.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEPORT, 1) # Enable broadcasting mode client.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1) -client.connect(("", 5678)) +client.bind(("", 5678)) while True: # Thanks @seym45 for a fix data, addr = client.recvfrom(1024) diff --git a/src/cli/data.py b/src/cli/data.py index c223a79..c46e726 100644 --- a/src/cli/data.py +++ b/src/cli/data.py @@ -193,7 +193,7 @@ def push_metric(client, competition, metric): def push_pit(client, competition, pit): for variable in pit: - + push_team_pit_data(client, competition, variable, pit[variable]) def check_new_database_matches(client, competition):