@@ -85,5 +85,7 @@ if __name__ == '__main__':
av.join()
al.join()
+ out = {}
while not q.empty():
- print(q.get())
+ out.update(q.get())
+ print(out)