From 640ac096ea41f54b9f2a267c6982bdd32e82e393 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Tue, 21 Jan 2025 04:39:07 -0500 Subject: Add main block back to Repl.py Contra d2edf150cf2c876971383a4a484f289ce7e7f680, this module is the one place that I do need the stupid __main__ thing. --- Omni/Repl.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Omni/Repl.py') 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() -- cgit v1.2.3