mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-17 22:40:19 -04:00
Update black to 19.10b0 (#6304)
* update version of black and also fix the mypy config being overridden
This commit is contained in:
parent
dfe0cd71b6
commit
020add5099
41 changed files with 191 additions and 166 deletions
|
@ -773,7 +773,7 @@ class StatsStore(StateDeltasStore):
|
|||
(room_id,),
|
||||
)
|
||||
|
||||
current_state_events_count, = txn.fetchone()
|
||||
(current_state_events_count,) = txn.fetchone()
|
||||
|
||||
users_in_room = self.get_users_in_room_txn(txn, room_id)
|
||||
|
||||
|
@ -863,7 +863,7 @@ class StatsStore(StateDeltasStore):
|
|||
""",
|
||||
(user_id,),
|
||||
)
|
||||
count, = txn.fetchone()
|
||||
(count,) = txn.fetchone()
|
||||
return count, pos
|
||||
|
||||
joined_rooms, pos = yield self.runInteraction(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue