diff options
author | Ben Sima <ben@bsima.me> | 2025-01-21 04:39:07 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2025-01-21 05:05:18 -0500 |
commit | 640ac096ea41f54b9f2a267c6982bdd32e82e393 (patch) | |
tree | bfddfa958478cc08ef2e47dae512639decceca67 /Omni | |
parent | fd1942057642098d0ec2878586d33e9c79483848 (diff) |
Add main block back to Repl.py
Contra d2edf150cf2c876971383a4a484f289ce7e7f680, this module is the one place
that I do need the stupid __main__ thing.
Diffstat (limited to 'Omni')
-rwxr-xr-x | Omni/Repl.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Omni/Repl.py b/Omni/Repl.py index cad04b5..8d191e2 100755 --- a/Omni/Repl.py +++ b/Omni/Repl.py @@ -260,3 +260,7 @@ def main() -> None: test() else: move() + + +if __name__ == "__main__": + main() |