mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 08:36:03 -04:00
Remove unnecessary parentheses around tuples returned from methods (#10889)
This commit is contained in:
parent
26f2bfedbf
commit
aa2c027792
22 changed files with 33 additions and 32 deletions
|
@ -81,7 +81,7 @@ class PaginationConfig:
|
|||
raise SynapseError(400, "Invalid request.")
|
||||
|
||||
def __repr__(self) -> str:
|
||||
return ("PaginationConfig(from_tok=%r, to_tok=%r, direction=%r, limit=%r)") % (
|
||||
return "PaginationConfig(from_tok=%r, to_tok=%r, direction=%r, limit=%r)" % (
|
||||
self.from_token,
|
||||
self.to_token,
|
||||
self.direction,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue