chore: bump ruff to 0.6.8 for fixing violation in SIM910 (#8869)

This commit is contained in:
Bowen Liang
2024-09-29 00:29:59 +08:00
committed by GitHub
parent f97607370a
commit 74f58f29f9
7 changed files with 27 additions and 27 deletions

View File

@@ -17,7 +17,7 @@ class MockedHttp:
request = httpx.Request(
method, url, params=kwargs.get("params"), headers=kwargs.get("headers"), cookies=kwargs.get("cookies")
)
data = kwargs.get("data", None)
data = kwargs.get("data")
resp = json.dumps(data).encode("utf-8") if data else b"OK"
response = httpx.Response(
status_code=200,