From 4e8e361fda99337c44fc8bd8c0487488a27d8199 Mon Sep 17 00:00:00 2001 From: drunkendog Date: Tue, 12 Sep 2023 13:31:53 +0100 Subject: [PATCH] Fix typo --- run-tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-tests.py b/run-tests.py index 49dc294..012715f 100644 --- a/run-tests.py +++ b/run-tests.py @@ -16,7 +16,7 @@ if sys.platform == "win32": for file_name in glob.glob("*.c", recursive=False): if file_name.rstrip(".c") in file_only_list: should_continue = input(f"{file_name}; run (y/N)?").lower() - if should_continue is not "y": + if should_continue != "y": continue subprocess.run(["gcc", "-std=c11", "-Wall", "-g", file_name], check=True) with open(next(x for x in file_list if file_name in x)) as f: