Skip to content

Commit

Permalink
Fixing typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
astronomerritt committed Feb 16, 2024
1 parent 1e77e1d commit 2adaa8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/adler/adler.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def runAdler(args):
def main():
parser = argparse.ArgumentParser(description="Runs Adler for a select planetoid and given user input.")

parser.add_argument("-s", "--ssoid", help="SSObject ID of planetoid.", type="str", required=True)
parser.add_argument("-s", "--ssoid", help="SSObject ID of planetoid.", type=str, required=True)

# can add arguments to specify a date range etc later
# alternatively we may start using a config file
Expand Down

0 comments on commit 2adaa8d

Please sign in to comment.