diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2019-11-21 12:00:14 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-21 12:00:14 +0000 |
commit | 3916e1b97a1ffc481dfdf66f7da58201a52140a9 (patch) | |
tree | 98a9c1e0ee1de0669aee83fd7b257a9e86792c45 /synapse/streams | |
parent | update macOS installation instructions (diff) | |
download | synapse-3916e1b97a1ffc481dfdf66f7da58201a52140a9.tar.xz |
Clean up newline quote marks around the codebase (#6362)
Diffstat (limited to 'synapse/streams')
-rw-r--r-- | synapse/streams/config.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/synapse/streams/config.py b/synapse/streams/config.py index 02994ab2a5..cd56cd91ed 100644 --- a/synapse/streams/config.py +++ b/synapse/streams/config.py @@ -88,9 +88,12 @@ class PaginationConfig(object): raise SynapseError(400, "Invalid request.") def __repr__(self): - return ( - "PaginationConfig(from_tok=%r, to_tok=%r," " direction=%r, limit=%r)" - ) % (self.from_token, self.to_token, self.direction, self.limit) + return ("PaginationConfig(from_tok=%r, to_tok=%r, direction=%r, limit=%r)") % ( + self.from_token, + self.to_token, + self.direction, + self.limit, + ) def get_source_config(self, source_name): keyname = "%s_key" % source_name |