Skip to content

Commit

Permalink
fix(lint): fix unnecessary type ignore (#17555)
Browse files Browse the repository at this point in the history
  • Loading branch information
villebro committed Nov 25, 2021
1 parent 5a1c681 commit 7429282
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions superset/utils/async_query_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,5 @@ def update_job(
logger.debug("********** logging event data to stream %s", scoped_stream_name)
logger.debug(event_data)

self._redis.xadd( # type: ignore
scoped_stream_name, event_data, "*", self._stream_limit
)
self._redis.xadd( # type: ignore
full_stream_name, event_data, "*", self._stream_limit_firehose
)
self._redis.xadd(scoped_stream_name, event_data, "*", self._stream_limit)
self._redis.xadd(full_stream_name, event_data, "*", self._stream_limit_firehose)

0 comments on commit 7429282

Please sign in to comment.