summary refs log tree commit diff
path: root/synapse/http/federation
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2023-03-09 07:09:49 -0500
committerGitHub <noreply@github.com>2023-03-09 07:09:49 -0500
commite7c3832ba65aa3b82d3738c6f8554e21d9d87d04 (patch)
treede209f4407fbd7e6337030ded146bbbd01e5a7cb /synapse/http/federation
parentAdd topic and name events to group of events that are batch persisted when cr... (diff)
downloadsynapse-e7c3832ba65aa3b82d3738c6f8554e21d9d87d04.tar.xz
Pull in netaddr type hints. (#15231)
And fix any issues from having those type hints.
Diffstat (limited to 'synapse/http/federation')
-rw-r--r--synapse/http/federation/matrix_federation_agent.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/http/federation/matrix_federation_agent.py b/synapse/http/federation/matrix_federation_agent.py
index 0359231e7d..8d7d0a3875 100644
--- a/synapse/http/federation/matrix_federation_agent.py
+++ b/synapse/http/federation/matrix_federation_agent.py
@@ -87,7 +87,7 @@ class MatrixFederationAgent:
         reactor: ISynapseReactor,
         tls_client_options_factory: Optional[FederationPolicyForHTTPS],
         user_agent: bytes,
-        ip_whitelist: IPSet,
+        ip_whitelist: Optional[IPSet],
         ip_blacklist: IPSet,
         _srv_resolver: Optional[SrvResolver] = None,
         _well_known_resolver: Optional[WellKnownResolver] = None,