Commit e828890879fbcb1b4426543be5a84a0dd31cf82a

Authored by quillotm
1 parent f0ca26aaf4
Exists in master

Adding default value for argparse in the case of disequilibrium choice.

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

... ... @@ -150,6 +150,7 @@
150 150 required=True,
151 151 choices=["kmeans", "2", "3"],
152 152 help="...")
  153 + parser_disequilibrium.set_defaults(which="disequilibrium")
153 154  
154 155 # Parse
155 156 args = parser.parse_args()