Skip to content

Commit

Permalink
#93 lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
joegasewicz committed Mar 7, 2024
1 parent 3249ad3 commit bb31109
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bobtail/response.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def get(self, req: Request, res: Response) -> None:
elif file_suffix in ("mpeg", "x-ms-wma", "vnd.rn-realaudio", "x-wav"):
self.set_headers({"Content-Type": f"audio/{file_suffix}"})
else:
self.set_headers({"Content-Type": f"text/plain"})
self.set_headers({"Content-Type": "text/plain"})

except Exception as exc:
self.set_status(500)
Expand Down

0 comments on commit bb31109

Please sign in to comment.