When trying to subscribe to more than one symbol, `__unpack_event(...)` has issues unpacking multiple symbols. For example: ``` # Subscribing to symbols across different instrument types symbols = ["SPY", "AAPL"] subscription = tasty.market_data.subscribe( symbols=symbols, on_quote=print, on_candle=print, on_greeks=print, ) # start streaming subscription.open() ``` Will result in: <img width="1202" height="176" alt="Image" src="https://github.com/user-attachments/assets/60c1b420-156c-4698-820e-d51931209778" />
When trying to subscribe to more than one symbol,
__unpack_event(...)has issues unpacking multiple symbols.For example:
Will result in: