diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-12-14 07:00:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-14 07:00:47 -0500 |
commit | 33abbc327813e65aaa91e10f98a31622c045004c (patch) | |
tree | df1a421f099ff6eee752422388f1c79bb5ee034b /synapse/http/__init__.py | |
parent | checks for generators in database functions (#11564) (diff) | |
download | synapse-33abbc327813e65aaa91e10f98a31622c045004c.tar.xz |
Add missing type hints to synapse.http. (#11571)
Diffstat (limited to 'synapse/http/__init__.py')
-rw-r--r-- | synapse/http/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/http/__init__.py b/synapse/http/__init__.py index 578fc48ef4..efecb089c1 100644 --- a/synapse/http/__init__.py +++ b/synapse/http/__init__.py @@ -25,7 +25,7 @@ from synapse.api.errors import SynapseError class RequestTimedOutError(SynapseError): """Exception representing timeout of an outbound request""" - def __init__(self, msg): + def __init__(self, msg: str): super().__init__(504, msg) @@ -33,7 +33,7 @@ ACCESS_TOKEN_RE = re.compile(r"(\?.*access(_|%5[Ff])token=)[^&]*(.*)$") CLIENT_SECRET_RE = re.compile(r"(\?.*client(_|%5[Ff])secret=)[^&]*(.*)$") -def redact_uri(uri): +def redact_uri(uri: str) -> str: """Strips sensitive information from the uri replaces with <redacted>""" uri = ACCESS_TOKEN_RE.sub(r"\1<redacted>\3", uri) return CLIENT_SECRET_RE.sub(r"\1<redacted>\3", uri) @@ -46,7 +46,7 @@ class QuieterFileBodyProducer(FileBodyProducer): https://twistedmatrix.com/trac/ticket/6528 """ - def stopProducing(self): + def stopProducing(self) -> None: try: FileBodyProducer.stopProducing(self) except task.TaskStopped: |