From 9d412e2f76a0e964a7d113e97ca694d19c2977a9 Mon Sep 17 00:00:00 2001 From: Dalena Date: Fri, 1 Nov 2024 16:09:20 -0500 Subject: [PATCH] chore: mypy --- silverback/cluster/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/silverback/cluster/client.py b/silverback/cluster/client.py index ff4cfc5b..365305c5 100644 --- a/silverback/cluster/client.py +++ b/silverback/cluster/client.py @@ -480,8 +480,8 @@ def workspaces(self) -> dict[str, Workspace]: def create_workspace( self, - workspace_slug: str = "", - workspace_name: str = "", + workspace_slug: str | None = None, + workspace_name: str | None = None, ) -> Workspace: response = self.post( "/workspaces",