Skip to content

Commit aa505d7

Browse files
GSK-3241 Make kernel_name the last argument of create_project (#1838)
1 parent 71e5369 commit aa505d7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

giskard/client/giskard_client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ def create_kernel(
229229
},
230230
)
231231

232-
def create_project(self, project_key: str, name: str, kernel_name: str = None, description: str = None) -> Project:
232+
def create_project(self, project_key: str, name: str, description: str = None, kernel_name: str = None) -> Project:
233233
"""Function to create a project in Giskard
234234
235235
Parameters
@@ -238,10 +238,10 @@ def create_project(self, project_key: str, name: str, kernel_name: str = None, d
238238
The unique value of the project which will be used to identify and fetch the project in future
239239
name : str
240240
The name of the project
241-
kernel_name : str
242-
The name of the kernel to run on
243241
description : str, optional
244242
Describe your project, by default None
243+
kernel_name : str
244+
The name of the kernel to run on
245245
246246
Returns
247247
-------

0 commit comments

Comments
 (0)