# Parse the --data-dir flag first so we can use it as a base for our other argument default values
# Parse the --data-dir flag first so we can use it as a base for our other argument default values
parser=argparse.ArgumentParser()
parser=argparse.ArgumentParser(add_help=False)
parser.add_argument("--data-dir",type=str,default=os.path.dirname(os.path.dirname(os.path.realpath(__file__))),help="base path where all user data is stored",)
parser.add_argument("--data-dir",type=str,default=os.path.dirname(os.path.dirname(os.path.realpath(__file__))),help="base path where all user data is stored",)