mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
fix blake formatting
This commit is contained in:
parent
1deb16a929
commit
5cca528b57
@ -7,11 +7,11 @@ class RequestHandler(http.server.BaseHTTPRequestHandler):
|
||||
if self.path != "/":
|
||||
return "Wrong Path", 400
|
||||
|
||||
content_type = self.headers.get('Content-Type')
|
||||
content_type = self.headers.get("Content-Type")
|
||||
if content_type is None:
|
||||
return "No Content-Type", 400
|
||||
|
||||
correct_content_type = self.headers.get('X-Test-Answer')
|
||||
correct_content_type = self.headers.get("X-Test-Answer")
|
||||
if correct_content_type is None:
|
||||
return "No X-Test-Answer", 400
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user