Skip to content

Commit

Permalink
Fix positional arguments in sbpack
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlemarinkovic committed Feb 2, 2024
1 parent 2cf8a68 commit 6798206
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 6798206

Please sign in to comment.