On 11/4/23 00:34, Nicolas Chautru wrote:
+# This will become -t option for iter_max in next release
+parser.add_argument("-x", "--iter-max",
+ type=int,
+ help="Max iterations",
+ default=6)
No need for "-x", it is possible to only have the long name:
parser.add_argument("--iter-max",
type=int,
help="Max iterations",
default=6)
If that works for you, I can do the change while applying.
Regards,
Maxime

