mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-06-04 16:18:47 -04:00
Update black, and run auto formatting over the codebase (#9381)
- Update black version to the latest
- Run black auto formatting over the codebase
- Run autoformatting according to [`docs/code_style.md
`](80d6dc9783/docs/code_style.md
)
- Update `code_style.md` docs around installing black to use the correct version
This commit is contained in:
parent
5636e597c3
commit
0a00b7ff14
271 changed files with 2802 additions and 1713 deletions
|
@ -44,7 +44,9 @@ class EventCreationTestCase(unittest.HomeserverTestCase):
|
|||
self.room_id = self.helper.create_room_as(self.user_id, tok=self.access_token)
|
||||
|
||||
self.info = self.get_success(
|
||||
self.hs.get_datastore().get_user_by_access_token(self.access_token,)
|
||||
self.hs.get_datastore().get_user_by_access_token(
|
||||
self.access_token,
|
||||
)
|
||||
)
|
||||
self.token_id = self.info.token_id
|
||||
|
||||
|
@ -169,8 +171,7 @@ class ServerAclValidationTestCase(unittest.HomeserverTestCase):
|
|||
self.room_id = self.helper.create_room_as(self.user_id, tok=self.access_token)
|
||||
|
||||
def test_allow_server_acl(self):
|
||||
"""Test that sending an ACL that blocks everyone but ourselves works.
|
||||
"""
|
||||
"""Test that sending an ACL that blocks everyone but ourselves works."""
|
||||
|
||||
self.helper.send_state(
|
||||
self.room_id,
|
||||
|
@ -181,8 +182,7 @@ class ServerAclValidationTestCase(unittest.HomeserverTestCase):
|
|||
)
|
||||
|
||||
def test_deny_server_acl_block_outselves(self):
|
||||
"""Test that sending an ACL that blocks ourselves does not work.
|
||||
"""
|
||||
"""Test that sending an ACL that blocks ourselves does not work."""
|
||||
self.helper.send_state(
|
||||
self.room_id,
|
||||
EventTypes.ServerACL,
|
||||
|
@ -192,8 +192,7 @@ class ServerAclValidationTestCase(unittest.HomeserverTestCase):
|
|||
)
|
||||
|
||||
def test_deny_redact_server_acl(self):
|
||||
"""Test that attempting to redact an ACL is blocked.
|
||||
"""
|
||||
"""Test that attempting to redact an ACL is blocked."""
|
||||
|
||||
body = self.helper.send_state(
|
||||
self.room_id,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue