Skip to content

Commit

Permalink
added option flag shortcuts
Browse files Browse the repository at this point in the history
  • Loading branch information
hweichelt committed Jun 27, 2024
1 parent 0873cb3 commit e608305
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clingexplaid/cli/clingo_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def register_options(self, options: clingo.ApplicationOptions) -> None:
for method, description in self.CLINGEXPLAID_METHODS.items():
options.add_flag(
group=group,
option=method,
option=f"{method},{method[0]}", # only works when none of the method's initial letter don't overlap
description=description,
target=self.method_flags[method],
)
Expand Down

0 comments on commit e608305

Please sign in to comment.