Skip to content

Commit

Permalink
Fix broken python3 -m cwhy (#41)
Browse files Browse the repository at this point in the history
Previously, `python3 -m cwhy` did nothing, while `cwhy` worked.
Now, they both work.
  • Loading branch information
camelid authored Oct 26, 2023
1 parent 8137525 commit a1c859d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/cwhy/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,3 +103,6 @@ def main():
stdin = sys.stdin.read()
if stdin:
print(cwhy.evaluate(args, stdin))

if __name__ == "__main__":
main()

0 comments on commit a1c859d

Please sign in to comment.