Skip to content

Commit

Permalink
Merge pull request #80 from rabix/bugfix/sbpack_argparse
Browse files Browse the repository at this point in the history
Fix positional arguments in sbpack
  • Loading branch information
pavlemarinkovic authored Feb 2, 2024
2 parents 2cf8a68 + 6798206 commit a016df2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions sbpack/pack.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,15 +391,15 @@ def main():

parser = argparse.ArgumentParser()
parser.add_argument(
"profile", "--profile",
"profile",
help="SB platform profile as set in the SB API credentials file."
)
parser.add_argument(
"appid", "--appid",
"appid",
help="Takes the form {user}/{project}/{app_id}."
)
parser.add_argument(
"cwl_path", "--cwl-path",
"cwl_path",
help="Path or URL to the main CWL file to be uploaded."
)
parser.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion sbpack/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2024.1.4rc1"
__version__ = "2024.2.2rc1"

0 comments on commit a016df2

Please sign in to comment.