Bump black configuration to target py36 (#9781)
Signed-off-by: Dan Callahan <danc@element.io>
This commit is contained in:
parent
1fc97ee876
commit
1d5f0e3529
|
@ -0,0 +1 @@
|
|||
Update Black configuration to target Python 3.6.
|
|
@ -35,7 +35,7 @@
|
|||
showcontent = true
|
||||
|
||||
[tool.black]
|
||||
target-version = ['py35']
|
||||
target-version = ['py36']
|
||||
exclude = '''
|
||||
|
||||
(
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -497,7 +497,7 @@ class SynapseSite(Site):
|
|||
resource,
|
||||
server_version_string,
|
||||
*args,
|
||||
**kwargs
|
||||
**kwargs,
|
||||
):
|
||||
Site.__init__(self, resource, *args, **kwargs)
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -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 []
|
||||
|
|
|
@ -38,7 +38,7 @@ def create_event(
|
|||
depth=2,
|
||||
event_id=None,
|
||||
prev_events: Optional[List[str]] = None,
|
||||
**kwargs
|
||||
**kwargs,
|
||||
):
|
||||
global _next_event_id
|
||||
|
||||
|
|
|
@ -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"])
|
||||
|
|
|
@ -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…
Reference in New Issue