mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-07-27 15:55:17 -04:00
Clean up newline quote marks around the codebase (#6362)
This commit is contained in:
parent
9cc168e42e
commit
3916e1b97a
26 changed files with 43 additions and 46 deletions
|
@ -377,9 +377,7 @@ class RegistrationWorkerStore(SQLBaseStore):
|
|||
"""
|
||||
|
||||
def f(txn):
|
||||
sql = (
|
||||
"SELECT name, password_hash FROM users" " WHERE lower(name) = lower(?)"
|
||||
)
|
||||
sql = "SELECT name, password_hash FROM users WHERE lower(name) = lower(?)"
|
||||
txn.execute(sql, (user_id,))
|
||||
return dict(txn)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue