Skip to content

Commit

Permalink
Merge pull request #4810 from NREL/cli_typo
Browse files Browse the repository at this point in the history
Fixes CLI `--help` typo.
  • Loading branch information
jmarrec authored Mar 3, 2023
2 parents fc854a4 + 0e4af69 commit 5e5564a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ int main(int argc, char* argv[]) {
experimentalApp->add_subcommand("ruby_version", "Returns the Ruby version used by the CLI")->group(versionGroupname)->callback([&rubyEngine]() {
rubyEngine->exec("puts RUBY_VERSION");
});
[[maybe_unused]] auto* python_versionCommand = experimentalApp->add_subcommand("python_version", "Returns the Ruby version used by the CLI")
[[maybe_unused]] auto* python_versionCommand = experimentalApp->add_subcommand("python_version", "Returns the Python version used by the CLI")
->group(versionGroupname)
->callback([&pythonEngine]() { pythonEngine->exec("import sys; print(sys.version)"); });

Expand Down

0 comments on commit 5e5564a

Please sign in to comment.