typing: Remove an unnecessary comment in zerver/actions/typing.py.

The comment was incorrectly placed and misleadingly suggested that
`long_term_idle` subscribers were excluded from `subscription_query`,
whereas they were not.
This commit is contained in:
opmkumar
2025-02-07 00:17:05 +05:30
committed by Tim Abbott
parent 1aa048df35
commit c2821ef0f4

View File

@@ -81,7 +81,6 @@ def do_send_stream_typing_notification(
topic=topic_name,
)
# We don't notify long_term_idle subscribers.
subscriptions_query = get_active_subscriptions_for_stream_id(
stream.id, include_deactivated_users=False
)