From 5378940aafc012888bc7ec9e475074770f90ad2f Mon Sep 17 00:00:00 2001 From: Keystroke <35793455+KeystrokeCascade@users.noreply.github.com> Date: Thu, 11 Jan 2024 01:25:20 +1100 Subject: [PATCH] Fixed indentation Changed indentation on an elif statement that prevented the script from running. --- build.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.py b/build.py index f570436..568119f 100755 --- a/build.py +++ b/build.py @@ -46,10 +46,10 @@ if __name__ == '__main__': if file.lower().endswith(".json"): json_paths.append(current_path) print(f"Added {file}") - - elif deep.lower().endswith(".json"): - json_paths.append(current_path) - print(f"Added {file}") + + elif deep.lower().endswith(".json"): + json_paths.append(current_path) + print(f"Added {file}") # 2. Now let's parse all the JSON files for json_path in json_paths: