Skip to content

Commit

Permalink
Fixing an ERROR with mypy run
Browse files Browse the repository at this point in the history
  • Loading branch information
renoyjohnm committed Nov 13, 2024
1 parent 98c8b98 commit 44ff8d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tabcmd/commands/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def get_items_by_name(logger, item_endpoint, item_name: str, container: Optional
all_items, pagination_item = item_endpoint.get(req_option)
if all_items is None or all_items == []:
raise TSC.ServerResponseError(
code=404,
code="404",
summary=_("errors.xmlapi.not_found"),
detail=_("errors.xmlapi.not_found") + ": " + item_log_name,
)
Expand Down

0 comments on commit 44ff8d8

Please sign in to comment.