Skip to content

Commit

Permalink
Lint fix streamer.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Quenos authored Nov 16, 2023
1 parent ca75a23 commit 4b8db25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tastytrade/streamer.py
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ async def _connect(self) -> None:
asyncio.create_task(self._heartbeat())
elif message['type'] == 'CHANNEL_OPENED':
channel = next((k for k, v in self._channels.items()
if v == message['channel']), None)
if v == message['channel']))
self._subscription_state[channel] \
= message['type']
elif message['type'] == 'FEED_CONFIG':
Expand Down

0 comments on commit 4b8db25

Please sign in to comment.