kstaats / karoo_gp

A Genetic Programming platform for Python with TensorFlow for wicked-fast CPU and GPU support.
Other
157 stars 61 forks source link

Fix `-h/--help` in `karoo-gp.py` #43

Open ezio-melotti opened 2 years ago

ezio-melotti commented 2 years ago

Currently running karoo-gp.py starts the interactive mode without printing any help. This is because of this line: https://github.com/kstaats/karoo_gp/blob/76613dafc17194c0301641f44e3c5a178f71f70e/karoo-gp.py#L72

This should be refactored to use argparse from the start, and not just in the else to parse the cmd-line args.