Skip to content

Commit

Permalink
fix cli
Browse files Browse the repository at this point in the history
  • Loading branch information
francescofuggitti committed Jun 19, 2023
1 parent b3d0a28 commit 08bde1e
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
4 changes: 2 additions & 2 deletions ltlf2dfa/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ def execute(logic, formula):
help="Path to the LTLf/PPLTL formula file.",
type=click.Path(exists=True, readable=True),
)
def main(logic, formula):
def cli(logic, formula):
"""From LTLf/PPLTL formulas to DFA."""
execute(Logic(logic.lower()), formula)


if __name__ == "__main__":
main() # pragma: no cover
cli() # pragma: no cover
52 changes: 26 additions & 26 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 08bde1e

Please sign in to comment.