Skip to content

Commit

Permalink
chore: fixed missed casting for mypy error
Browse files Browse the repository at this point in the history
  • Loading branch information
lbarbMITRE committed Jul 20, 2023
1 parent 5592e04 commit ee331c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/dioptra/client/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -687,9 +687,9 @@ def task_plugin_custom_endpoint(self) -> str:
"""Custom task plugins endpoint url"""
return urlunparse(
(
self._scheme,
self._netloc,
urljoin(self._path, "taskPlugin/dioptra_custom"),
str(self._scheme),
str(self._netloc),
urljoin(str(self._path), "taskPlugin/dioptra_custom"),
"",
"",
"",
Expand Down

0 comments on commit ee331c7

Please sign in to comment.