diff --git a/ogscm/recipes/ogs.py b/ogscm/recipes/ogs.py index 8491a2da7803779aee70f845bca49d1fdb625769..562ccc22847523dd62552428df5e20ee8f074743 100644 --- a/ogscm/recipes/ogs.py +++ b/ogscm/recipes/ogs.py @@ -107,7 +107,13 @@ parse_g.add_argument( action="store_true", help="Installs development tools (vim, gdb)", ) -parse_g.add_argument("--mkl", dest="mkl", action="store_true", help="Use MKL. By setting this option, you agree to the [Intel End User License Agreement](https://software.intel.com/en-us/articles/end-user-license-agreement).") +parse_g.add_argument( + "--mkl", + dest="mkl", + action="store_true", + help="Use MKL. By setting this option, you agree to the [Intel End User License Agreement](https://software.intel.com/en-us/articles/end-user-license-agreement).", +) +parse_g.add_argument("--version_file", type=str, help="OGS versions.json file") # Parse local args local_args = parser.parse_known_args()[0]