Skip to content

Commit 0aa5a39

Browse files
committed
fix lint
1 parent c030532 commit 0aa5a39

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

synapse/storage/databases/main/end_to_end_keys.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1453,14 +1453,17 @@ def impl(txn: LoggingTransaction) -> Tuple[bool, Optional[int]]:
14531453
impl,
14541454
)
14551455

1456-
async def delete_old_otks_for_one_user(self, after_user_id: str) -> Tuple[Optional[str], int]:
1456+
async def delete_old_otks_for_one_user(
1457+
self, after_user_id: str
1458+
) -> Tuple[Optional[str], int]:
14571459
"""Deletes old OTKs belonging to one user.
14581460
14591461
Returns:
14601462
`(user, rows)`, where:
14611463
* `user` is the user ID of the updated user, or None if we are don
14621464
* `rows` is the number of deleted rows
14631465
"""
1466+
14641467
def impl(txn: LoggingTransaction) -> Tuple[Optional[str], int]:
14651468
# Find the next user
14661469
txn.execute(

0 commit comments

Comments
 (0)