Browse Source

Bump black configuration to target py36 (#9781)

Signed-off-by: Dan Callahan <danc@element.io>
tags/v1.32.0rc1
Dan Callahan 3 years ago
committed by GitHub
parent
commit
1d5f0e3529
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 16 additions and 15 deletions
  1. +1
    -0
      changelog.d/9781.misc
  2. +1
    -1
      pyproject.toml
  3. +1
    -1
      synapse/config/tls.py
  4. +1
    -1
      synapse/handlers/presence.py
  5. +1
    -1
      synapse/http/matrixfederationclient.py
  6. +1
    -1
      synapse/http/site.py
  7. +4
    -4
      synapse/storage/database.py
  8. +1
    -1
      tests/replication/slave/storage/test_events.py
  9. +1
    -1
      tests/test_state.py
  10. +3
    -3
      tests/test_utils/event_injection.py
  11. +1
    -1
      tests/utils.py

+ 1
- 0
changelog.d/9781.misc View File

@@ -0,0 +1 @@
Update Black configuration to target Python 3.6.

+ 1
- 1
pyproject.toml View File

@@ -35,7 +35,7 @@
showcontent = true

[tool.black]
target-version = ['py35']
target-version = ['py36']
exclude = '''

(


+ 1
- 1
synapse/config/tls.py View File

@@ -270,7 +270,7 @@ class TlsConfig(Config):
tls_certificate_path,
tls_private_key_path,
acme_domain,
**kwargs
**kwargs,
):
"""If the acme_domain is specified acme will be enabled.
If the TLS paths are not specified the default will be certs in the


+ 1
- 1
synapse/handlers/presence.py View File

@@ -1071,7 +1071,7 @@ class PresenceEventSource:
room_ids=None,
include_offline=True,
explicit_room_id=None,
**kwargs
**kwargs,
) -> Tuple[List[UserPresenceState], int]:
# The process for getting presence events are:
# 1. Get the rooms the user is in.


+ 1
- 1
synapse/http/matrixfederationclient.py View File

@@ -272,7 +272,7 @@ class MatrixFederationHttpClient:
self,
request: MatrixFederationRequest,
try_trailing_slash_on_400: bool = False,
**send_request_args
**send_request_args,
) -> IResponse:
"""Wrapper for _send_request which can optionally retry the request
upon receiving a combination of a 400 HTTP response code and a


+ 1
- 1
synapse/http/site.py View File

@@ -497,7 +497,7 @@ class SynapseSite(Site):
resource,
server_version_string,
*args,
**kwargs
**kwargs,
):
Site.__init__(self, resource, *args, **kwargs)



+ 4
- 4
synapse/storage/database.py View File

@@ -488,7 +488,7 @@ class DatabasePool:
exception_callbacks: List[_CallbackListEntry],
func: "Callable[..., R]",
*args: Any,
**kwargs: Any
**kwargs: Any,
) -> R:
"""Start a new database transaction with the given connection.

@@ -622,7 +622,7 @@ class DatabasePool:
func: "Callable[..., R]",
*args: Any,
db_autocommit: bool = False,
**kwargs: Any
**kwargs: Any,
) -> R:
"""Starts a transaction on the database and runs a given function

@@ -682,7 +682,7 @@ class DatabasePool:
func: "Callable[..., R]",
*args: Any,
db_autocommit: bool = False,
**kwargs: Any
**kwargs: Any,
) -> R:
"""Wraps the .runWithConnection() method on the underlying db_pool.

@@ -775,7 +775,7 @@ class DatabasePool:
desc: str,
decoder: Optional[Callable[[Cursor], R]],
query: str,
*args: Any
*args: Any,
) -> R:
"""Runs a single query for a result set.



+ 1
- 1
tests/replication/slave/storage/test_events.py View File

@@ -340,7 +340,7 @@ class SlavedEventStoreTestCase(BaseSlavedStoreTestCase):
prev_state: Optional[list] = None,
redacts=None,
push_actions: Iterable = frozenset(),
**content
**content,
):
prev_events = prev_events or []
auth_events = auth_events or []


+ 1
- 1
tests/test_state.py View File

@@ -38,7 +38,7 @@ def create_event(
depth=2,
event_id=None,
prev_events: Optional[List[str]] = None,
**kwargs
**kwargs,
):
global _next_event_id



+ 3
- 3
tests/test_utils/event_injection.py View File

@@ -33,7 +33,7 @@ async def inject_member_event(
membership: str,
target: Optional[str] = None,
extra_content: Optional[dict] = None,
**kwargs
**kwargs,
) -> EventBase:
"""Inject a membership event into a room."""
if target is None:
@@ -58,7 +58,7 @@ async def inject_event(
hs: synapse.server.HomeServer,
room_version: Optional[str] = None,
prev_event_ids: Optional[List[str]] = None,
**kwargs
**kwargs,
) -> EventBase:
"""Inject a generic event into a room

@@ -83,7 +83,7 @@ async def create_event(
hs: synapse.server.HomeServer,
room_version: Optional[str] = None,
prev_event_ids: Optional[List[str]] = None,
**kwargs
**kwargs,
) -> Tuple[EventBase, EventContext]:
if room_version is None:
room_version = await hs.get_datastore().get_room_version_id(kwargs["room_id"])


+ 1
- 1
tests/utils.py View File

@@ -190,7 +190,7 @@ def setup_test_homeserver(
config=None,
reactor=None,
homeserver_to_use: Type[HomeServer] = TestHomeServer,
**kwargs
**kwargs,
):
"""
Setup a homeserver suitable for running tests against. Keyword arguments


Loading…
Cancel
Save