Skip to content
This repository was archived by the owner on Mar 21, 2024. It is now read-only.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ created.
## Upcoming

### Added

- ([#689](https://github.com/microsoft/InnerEye-DeepLearning/pull/689)) Show default argument values in help message.
- ([#671](https://github.com/microsoft/InnerEye-DeepLearning/pull/671)) Remove sequence models and unused variables. Simplify README.
- ([#693](https://github.com/microsoft/InnerEye-DeepLearning/pull/693)) Improve instructions for HelloWorld model in AzureML.
- ([#678](https://github.com/microsoft/InnerEye-DeepLearning/pull/678)) Add function to get log level name and use it for logging.
Expand Down
2 changes: 1 addition & 1 deletion InnerEye/Common/generic_parsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def create_argparser(cls: Type[GenericConfig]) -> argparse.ArgumentParser:
Creates an ArgumentParser with all fields of the given argparser that are overridable.
:return: ArgumentParser
"""
parser = argparse.ArgumentParser()
parser = argparse.ArgumentParser(formatter_class=argparse.ArgumentDefaultsHelpFormatter)
cls.add_args(parser)

return parser
Expand Down