Skip to content

Commit

Permalink
add CI suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
hyperrealist authored Jun 24, 2024
1 parent 0c3a127 commit 905d305
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tiled/server/file_response_with_range.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ def __init__(
**kwargs,
):
if (range is not None) and (status_code != HTTP_206_PARTIAL_CONTENT):
raise RuntimeError(f"Range requests must have a {HTTP_206_PARTIAL_CONTENT} status code.")
raise RuntimeError(
f"Range requests must have a {HTTP_206_PARTIAL_CONTENT} status code."
)
self.range = range
super().__init__(path, status_code, *args, **kwargs)

Expand Down

0 comments on commit 905d305

Please sign in to comment.