Skip to content

Commit

Permalink
Remove obsolete do_not_separate_logs argument
Browse files Browse the repository at this point in the history
tcompa committed Nov 8, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 40bbe42 commit 0a3b935
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions fractal_client/cmd/__init__.py
Original file line number Diff line number Diff line change
@@ -156,7 +156,6 @@ def task(
parameters = [
"task_group_activity_id",
"include_logs",
"do_not_separate_logs",
]
function_kwargs = get_kwargs(parameters, kwargs)
iface = show_task_group_activity(client, **function_kwargs)
@@ -275,7 +274,7 @@ def job(
function_kwargs = get_kwargs(parameters, kwargs)
iface = get_job_list(client, batch=batch, **function_kwargs)
elif subcmd == "show":
parameters = ["project_id", "job_id", "do_not_separate_logs"]
parameters = ["project_id", "job_id"]
function_kwargs = get_kwargs(parameters, kwargs)
iface = get_job(client, batch=batch, **function_kwargs)
elif subcmd == "download-logs":

0 comments on commit 0a3b935

Please sign in to comment.