Remove clutter

This commit is contained in:
Andras Schmelczer 2022-06-28 18:25:18 +02:00
parent d914bbb5c1
commit 7f3d89fb94
No known key found for this signature in database
GPG key ID: 0EA1BC97D0AB076E

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