Update ruff config (#16283)

Enable additional checks & clean-up unneeded configuration.
This commit is contained in:
Patrick Cloke
2023-09-08 11:24:36 -04:00
committed by GitHub
parent c1c6c95d72
commit aa483cb4c9
26 changed files with 63 additions and 64 deletions

View File

@@ -37,7 +37,6 @@ class HttpClient:
Deferred: Succeeds when we get a 2xx HTTP response. The result
will be the decoded JSON body.
"""
pass
def get_json(self, url, args=None):
"""Gets some json from the given host homeserver and path
@@ -53,7 +52,6 @@ class HttpClient:
Deferred: Succeeds when we get a 2xx HTTP response. The result
will be the decoded JSON body.
"""
pass
class TwistedHttpClient(HttpClient):