From 6382d2b7c1910f29556b740513421b57da9c5a97 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sun, 27 Sep 2020 18:41:02 +0200 Subject: Added custom Exception with more descriptive error message --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.py') diff --git a/src/main.py b/src/main.py index dbe33ea..473fc9a 100755 --- a/src/main.py +++ b/src/main.py @@ -22,7 +22,6 @@ # [x] bad output format # [x] should be dead -import os import sys import subprocess import argparse @@ -55,5 +54,6 @@ def main(): Test.run_all(config.PHILO_EXEC_PATHS[0]) # print("yo") + if __name__ == "__main__": main() -- cgit