diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2019-11-08 15:45:45 +0000 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2019-11-08 15:45:45 +0000 |
commit | cd96b4586f8dfa8a6857e1bee7de2bd9660238d5 (patch) | |
tree | 15d7f736c818bc291b4722305b9e53b36c222bb3 /synapse/replication | |
parent | Add changelog (diff) | |
download | synapse-cd96b4586f8dfa8a6857e1bee7de2bd9660238d5.tar.xz |
lint
Diffstat (limited to 'synapse/replication')
-rw-r--r-- | synapse/replication/tcp/streams/_base.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/replication/tcp/streams/_base.py b/synapse/replication/tcp/streams/_base.py index dd87733842..8512923eae 100644 --- a/synapse/replication/tcp/streams/_base.py +++ b/synapse/replication/tcp/streams/_base.py @@ -88,8 +88,7 @@ TagAccountDataStreamRow = namedtuple( "TagAccountDataStreamRow", ("user_id", "room_id", "data") # str # str # dict ) AccountDataStreamRow = namedtuple( - "AccountDataStream", - ("user_id", "room_id", "data_type"), # str # str # str + "AccountDataStream", ("user_id", "room_id", "data_type") # str # str # str ) GroupsStreamRow = namedtuple( "GroupsStreamRow", |