Skip to content

Commit

Permalink
style: run ruff format on all files
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasschaub committed Dec 12, 2023
1 parent 935f369 commit 65d7930
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion sketch_map_tool/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def status(uuid: str, type_: REQUEST_TYPES) -> Response:
# to semantic errors.
http_status = 422 # Unprocessable Entity
error = str(err)
except (Exception) as err:
except Exception as err:
http_status = 500 # Internal Server Error
error = str(err)
else: # PENDING, RETRY, STARTED
Expand Down
1 change: 1 addition & 0 deletions tests/integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ def bbox_wgs84():
"scale": "9051.161965312804",
}


# TODO: Add other params
@pytest.fixture(scope="session", params=[a4])
def params(request):
Expand Down

0 comments on commit 65d7930

Please sign in to comment.