Skip to content
Snippets Groups Projects
Commit aaed6b39 authored by Jason Robinson's avatar Jason Robinson
Browse files

Fix code style, again

parent e89fea4f
No related branches found
No related tags found
No related merge requests found
......@@ -449,9 +449,7 @@ class RegistrationWorkerStore(SQLBaseStore):
"""Counts all users without a special user_type registered on the homeserver."""
def _count_users(txn):
txn.execute(
"SELECT COUNT(*) AS users FROM users where user_type is null"
)
txn.execute("SELECT COUNT(*) AS users FROM users where user_type is null")
rows = self.cursor_to_dict(txn)
if rows:
return rows[0]["users"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment