Skip to content

Commit

Permalink
fix also the unknown returns, v0.6.14
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasHeger committed May 19, 2022
1 parent 0710ccb commit 94f6862
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cgatcore/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -1221,9 +1221,10 @@ def start(parser=None,

if unknowns:
opt1, opt2 = global_args, unknown
retval = (opt1, opt2)
else:
opt1, opt2 = global_args, None
retval = opt1
retval = opt1

_setup_seed(opt1)
_setup_pipes(opt1, add_pipe_options)
Expand Down
2 changes: 1 addition & 1 deletion cgatcore/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.13"
__version__ = "0.6.14"

0 comments on commit 94f6862

Please sign in to comment.