aboutsummaryrefslogtreecommitdiff
path: root/src/main.py
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-09-27 18:41:02 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-09-27 18:41:02 +0200
commit6382d2b7c1910f29556b740513421b57da9c5a97 (patch)
tree4e79e4b13226cd1b288486e2819368c767e55259 /src/main.py
parent51857521f770caae7b36e3a36a30d5b6986e66d1 (diff)
downloadphilosophers_test-6382d2b7c1910f29556b740513421b57da9c5a97.tar.gz
philosophers_test-6382d2b7c1910f29556b740513421b57da9c5a97.tar.bz2
philosophers_test-6382d2b7c1910f29556b740513421b57da9c5a97.zip
Added custom Exception with more descriptive error message
Diffstat (limited to 'src/main.py')
-rwxr-xr-xsrc/main.py2
1 files changed, 1 insertions, 1 deletions
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()