Skip to content

Commit

Permalink
fixing formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ksierks authored and ericenns committed Oct 13, 2023
1 parent afef746 commit f46182b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ def list_sequence_files(startDate, endDate, host, user, password, database):
def main():
parser = argparse.ArgumentParser(description="This program lists the sequence files and folders that have been previously deleted in IRIDA.")
parser.add_argument('--purge', help="Deletes the sequence files and folders from the filesystem.", action="store_true")
parser.add_argument('--startDate', type=datetime.date.fromisoformat, help="The start date in format YYYY-MM-DD (inclusive).", required=False)
parser.add_argument('--endDate', type=datetime.date.fromisoformat, help="The end date in format YYYY-MM-DD (inclusive).", required=False)
parser.add_argument('--startDate', type=datetime.date.fromisoformat, help="The start date in format YYYY-MM-DD (inclusive).", required=False)
parser.add_argument('--endDate', type=datetime.date.fromisoformat, help="The end date in format YYYY-MM-DD (inclusive).", required=False)
parser.add_argument('--baseDirectory', default='/tmp/irida/sequence-files', help="The sequence file base directory.", required=False)
parser.add_argument('--host', default='localhost', help="The database host name.", required=False)
parser.add_argument('--database', default='irida_test', help="The database name.", required=False)
Expand Down

0 comments on commit f46182b

Please sign in to comment.