Changed argument name for catalog file

This commit is contained in:
asia 2025-04-25 11:18:32 +02:00
parent e436dec713
commit ae722c8218

View File

@ -25,7 +25,7 @@ from seismic_hazard_forecasting import main as shf
def main(argv):
parser = argparse.ArgumentParser()
parser.add_argument("catalog", help="Path to input file of type 'catalog'")
parser.add_argument("catalog_file", help="Path to input file of type 'catalog'")
parser.add_argument("--mc_file", help="Path to input file of type 'mccalc_output'", type=str, default=None, required=False)
parser.add_argument("--pdf_file", help="Path to input file of type 'PDF'", type=str, default=None, required=False)
parser.add_argument("--m_file", help="Path to input file of type 'm'", type=str, default=None, required=False)