From e2e71c91697558a92e0b4d700d1ab77a92d32640 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Do=C4=9Fukan=20=C3=87a=C4=9Fatay?= Date: Mon, 20 Nov 2023 21:08:09 +0100 Subject: [PATCH] Make account_id parameter non-required on project create --- aiven/client/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiven/client/client.py b/aiven/client/client.py index ac0e6e7..fa89278 100644 --- a/aiven/client/client.py +++ b/aiven/client/client.py @@ -1639,7 +1639,7 @@ def get_account_authentication_methods(self, account_id: str) -> Sequence[dict[s def create_project( self, project: str, - account_id: str | None, + account_id: str | None = None, billing_group_id: str | None = None, cloud: str | None = None, copy_from_project: str | None = None,