We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 211587c commit a388586Copy full SHA for a388586
gradient/api_sdk/workspace.py
@@ -39,7 +39,7 @@ def handle(self, input_data):
39
return workspace_url # nothing to do
40
41
# Should be removed as soon it won't be necessary by PS_API
42
- if workspace_path in ('none', None):
+ if workspace_path == 'none':
43
return 'none'
44
45
if workspace_archive:
gradient/cli/jobs.py
@@ -144,6 +144,7 @@ def common_jobs_create_options(f):
144
click.option(
145
"--workspace",
146
"workspace",
147
+ default=".",
148
help="Path to workspace directory",
149
cls=common.GradientOption,
150
),
0 commit comments