Revert "fix false type from _clients in server.py"

This reverts commit d08381108f.
This commit is contained in:
Bastian Schroll 2018-09-20 14:19:51 +02:00
parent d08381108f
commit c903276141

View file

@ -26,7 +26,7 @@ _dataPackets = []
_lockDataPackets = threading.Lock()
# module wide global list for all currently connected clients
_clients = [] # _clients[ThreadName] = {"address", "timestamp"}
_clients = {} # _clients[ThreadName] = {"address", "timestamp"}
_lockClients = threading.Lock()