Skip to content

Commit 5e2202f

Browse files
Make fmt
1 parent 4a196f7 commit 5e2202f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_base_client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -325,8 +325,8 @@ def inner(h: BaseHTTPRequestHandler):
325325
content_length = int(h.headers.get('Content-Length', 0))
326326
if content_length > 0:
327327
requests.append(h.rfile.read(content_length))
328-
329-
h.send_response(429)
328+
329+
h.send_response(429)
330330
h.send_header('Retry-After', '1')
331331
h.end_headers()
332332

@@ -335,7 +335,7 @@ def inner(h: BaseHTTPRequestHandler):
335335

336336
with http_fixture_server(inner) as host:
337337
client = _BaseClient()
338-
338+
339339
# Should raise error immediately without retry.
340340
with pytest.raises(DatabricksError):
341341
client.do('POST', f'{host}/foo', data=stream)

0 commit comments

Comments
 (0)