From ee331c74fc32675c517e5230bac251e5f727f425 Mon Sep 17 00:00:00 2001 From: lbarber Date: Thu, 20 Jul 2023 16:44:39 -0400 Subject: [PATCH] chore: fixed missed casting for mypy error --- src/dioptra/client/_client.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dioptra/client/_client.py b/src/dioptra/client/_client.py index 6e8eb2262..e9a8d19d6 100644 --- a/src/dioptra/client/_client.py +++ b/src/dioptra/client/_client.py @@ -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"), "", "", "",