forked from goodboy/tractor
1
0
Fork 0

Instance ids are ints

live_on_air_from_tokio
Tyler Goodlet 2021-08-20 14:46:52 -04:00
parent d7ad8982ff
commit 093e7d921c
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ class BroadcastState:
# map of underlying instance id keys to receiver instances which
# must be provided as a singleton per broadcaster set.
subs: dict[str, int]
subs: dict[int, int]
# broadcast event to wake up all sleeping consumer tasks
# on a newly produced value from the sender.