Fix stale docstring in recorder queries (#120763)

This commit is contained in:
J. Nick Koston 2024-06-28 16:29:12 -05:00 committed by GitHub
parent a6454cf3c7
commit b03c10647e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -594,7 +594,7 @@ def delete_statistics_short_term_rows(
def delete_event_rows(
event_ids: Iterable[int],
) -> StatementLambdaElement:
"""Delete statistics_short_term rows."""
"""Delete event rows."""
return lambda_stmt(
lambda: delete(Events)
.where(Events.event_id.in_(event_ids))