parser = argparse.ArgumentParser('Utility to display SyncId information.')
parser.add_argument('ids', help='list of ids to dsiplay information related to them.')
becuase if i pass more than one value to the function from commandline , i get error of multiple values being passed saying error: unrecognized arguments: second third
the first one goes through but second and third doesnt, so i want to make a list of first second and third
but it should be alist of first - third like [first, second, third]