Remove clutter

This commit is contained in:
Andras Schmelczer 2022-06-28 18:25:18 +02:00
parent e53afb07bc
commit cab34de326

View file

@ -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]"]:
...