diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-09-11 13:04:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-11 13:04:49 +0200 |
commit | e00d77f5f3dc4213085e2e485459be098221b0d7 (patch) | |
tree | cfd0063efbfbe6bdf442e01f90c13668812f1409 | |
parent | a2a78a80663674a1cd348a860184be8507bb76e3 (diff) | |
parent | 3070d0b7351d480ec201d4f488938744f68e56dd (diff) |
Merge pull request #41975 from madmiraal/remove-unused-variables
Remove unused Python local variables.
-rw-r--r-- | editor/editor_builders.py | 1 | ||||
-rw-r--r-- | glsl_builders.py | 5 | ||||
-rw-r--r-- | modules/mono/build_scripts/solution_builder.py | 3 |
3 files changed, 0 insertions, 9 deletions
diff --git a/editor/editor_builders.py b/editor/editor_builders.py index ea32e24f6e..86c5c87a68 100644 --- a/editor/editor_builders.py +++ b/editor/editor_builders.py @@ -54,7 +54,6 @@ def make_fonts_header(target, source, env): g.write("#define _EDITOR_FONTS_H\n") # saving uncompressed, since freetype will reference from memory pointer - xl_names = [] for i in range(len(source)): with open(source[i], "rb") as f: buf = f.read() diff --git a/glsl_builders.py b/glsl_builders.py index e1a6e41bea..29971fd4e7 100644 --- a/glsl_builders.py +++ b/glsl_builders.py @@ -96,8 +96,6 @@ def build_rd_header(filename): out_file = filename + ".gen.h" fd = open(out_file, "w") - enum_constants = [] - fd.write("/* WARNING, THIS FILE WAS GENERATED, DO NOT EDIT */\n") out_file_base = out_file @@ -165,7 +163,6 @@ class RAWHeaderStruct: def include_file_in_raw_header(filename, header_data, depth): fs = open(filename, "r") line = fs.readline() - text = "" while line: @@ -192,8 +189,6 @@ def build_raw_header(filename): out_file = filename + ".gen.h" fd = open(out_file, "w") - enum_constants = [] - fd.write("/* WARNING, THIS FILE WAS GENERATED, DO NOT EDIT */\n") out_file_base = out_file.replace(".glsl.gen.h", "_shader_glsl") diff --git a/modules/mono/build_scripts/solution_builder.py b/modules/mono/build_scripts/solution_builder.py index 03f4e57f02..6a621c3c8b 100644 --- a/modules/mono/build_scripts/solution_builder.py +++ b/modules/mono/build_scripts/solution_builder.py @@ -8,9 +8,6 @@ def find_dotnet_cli(): import os.path if os.name == "nt": - windows_exts = os.environ["PATHEXT"] - windows_exts = windows_exts.split(os.pathsep) if windows_exts else [] - for hint_dir in os.environ["PATH"].split(os.pathsep): hint_dir = hint_dir.strip('"') hint_path = os.path.join(hint_dir, "dotnet") |