forked from MirrorHub/synapse
Merge pull request #601 from Rugvip/pep8
handlers/sync: style fix, line too long
This commit is contained in:
commit
0d4b3a133d
1 changed files with 5 additions and 1 deletions
|
@ -121,7 +121,11 @@ class SyncResult(collections.namedtuple("SyncResult", [
|
|||
events.
|
||||
"""
|
||||
return bool(
|
||||
self.presence or self.joined or self.invited or self.archived or self.account_data
|
||||
self.presence or
|
||||
self.joined or
|
||||
self.invited or
|
||||
self.archived or
|
||||
self.account_data
|
||||
)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue