From cab34de32668ef051f7d2f60791338e4dc72a6d4 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Tue, 28 Jun 2022 18:25:18 +0200 Subject: [PATCH] Remove clutter --- src/great_ai/great_ai/deploy/great_ai.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/great_ai/great_ai/deploy/great_ai.py b/src/great_ai/great_ai/deploy/great_ai.py index 6cef9d5..63c4f91 100644 --- a/src/great_ai/great_ai/deploy/great_ai.py +++ b/src/great_ai/great_ai/deploy/great_ai.py @@ -82,10 +82,10 @@ class GreatAI(Generic[T]): @overload @staticmethod def create( - version: str = "0.0.1", - disable_rest_api: bool = False, - disable_docs: bool = False, - disable_dashboard: bool = False, + version: str, + disable_rest_api: bool, + disable_docs: bool, + disable_dashboard: bool, ) -> Callable[[Callable[..., T]], "GreatAI[T]"]: ...