Skip to content

Commit

Permalink
Make scheme name required parameter for download
Browse files Browse the repository at this point in the history
  • Loading branch information
dfornika committed Feb 20, 2020
1 parent 84f5fdd commit 4a49555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pubmlst_client/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
def main():

parser = argparse.ArgumentParser()
parser.add_argument("--scheme_name", "-s", dest="scheme_name", help="scheme name")
parser.add_argument("--scheme_name", "-s", dest="scheme_name", help="scheme name", required=True)
parser.add_argument("--scheme_id", "-i", dest="scheme_id", default="1", help="scheme id")
parser.add_argument("--outdir", "-o", dest="outdir", default='.', help="output directory")
args = parser.parse_args()
Expand Down

0 comments on commit 4a49555

Please sign in to comment.