Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
pcrespov committed Dec 6, 2024
1 parent 6711e2d commit 4f0345b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/catalog/tests/unit/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ def _search(service_key, service_version):
path__regex=r"^/services/(?P<service_key>[/\w-]+)/(?P<service_version>[0-9.]+)$",
name="get_service",
)
def _get_service(request, service_key, service_version):
def _get_service(request: httpx.Request, service_key, service_version):
if found := _search(service_key, service_version):
# NOTE: this is a defect in director's API
single_service_list = [found]
Expand Down

0 comments on commit 4f0345b

Please sign in to comment.