Remove unnecessary parentheses around tuples returned from methods (#10889)

This commit is contained in:
Andrew Morgan 2021-09-23 11:59:07 +01:00 committed by GitHub
parent 26f2bfedbf
commit aa2c027792
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 33 additions and 32 deletions

View file

@ -106,7 +106,7 @@ class StateGroupStore:
}
async def get_state_group_delta(self, name):
return (None, None)
return None, None
def register_events(self, events):
for e in events: