mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-05 06:14:57 -04:00
Bump flake8-bugbear from 22.9.23 to 22.10.27 (#14329)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: GitHub Actions <github-actions[bot]@users.noreply.github.com> Co-authored-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org>
This commit is contained in:
parent
bb39fc4366
commit
8bcdd712b8
5 changed files with 12 additions and 9 deletions
|
@ -256,7 +256,7 @@ class BasePresenceHandler(abc.ABC):
|
|||
with the app.
|
||||
"""
|
||||
|
||||
async def update_external_syncs_row(
|
||||
async def update_external_syncs_row( # noqa: B027 (no-op by design)
|
||||
self, process_id: str, user_id: str, is_syncing: bool, sync_time_msec: int
|
||||
) -> None:
|
||||
"""Update the syncing users for an external process as a delta.
|
||||
|
@ -272,7 +272,9 @@ class BasePresenceHandler(abc.ABC):
|
|||
sync_time_msec: Time in ms when the user was last syncing
|
||||
"""
|
||||
|
||||
async def update_external_syncs_clear(self, process_id: str) -> None:
|
||||
async def update_external_syncs_clear( # noqa: B027 (no-op by design)
|
||||
self, process_id: str
|
||||
) -> None:
|
||||
"""Marks all users that had been marked as syncing by a given process
|
||||
as offline.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue