You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#Sets up the program to read command line arguments
parser = argparse.ArgumentParser(description = 'Compare two result sets')
parser.add_argument('file1', type=str, help='Filename of first result set')
parser.add_argument('file2', type=str, help='Filename of second result set')
parser.add_argument('--verbose', action='store_true', help='Be a little more verbose') #Adds a new argument option to the program, --verbose, which does not take any values