From 1018d9c6b4b4f38f6845d1046a4c75415d9c6672 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Sun, 26 Jun 2022 20:03:26 +0200 Subject: [PATCH] Fix bug --- src/great_ai/great_ai/deploy/great_ai.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/great_ai/great_ai/deploy/great_ai.py b/src/great_ai/great_ai/deploy/great_ai.py index c8fb1b8..6cef9d5 100644 --- a/src/great_ai/great_ai/deploy/great_ai.py +++ b/src/great_ai/great_ai/deploy/great_ai.py @@ -102,7 +102,7 @@ class GreatAI(Generic[T]): return cast( Callable[[Callable[..., T]], GreatAI[T]], partial( - GreatAI.deploy, + GreatAI.create, disable_http=disable_rest_api, disable_docs=disable_docs, disable_dashboard=disable_dashboard,