Skip to content

Commit

Permalink
Dont allow windows to run
Browse files Browse the repository at this point in the history
Signed-off-by: kingstefan26 <[email protected]>
  • Loading branch information
kingstefan26 committed Nov 21, 2023
1 parent e012897 commit f9b40a4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions alabamaEncode/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ def main():
"""
Main entry point
"""
if os.name == "nt":
print("Windows is not supported")
quit()

global runtime
runtime = time.time()

Expand Down

0 comments on commit f9b40a4

Please sign in to comment.