1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-19 14:31:59 +00:00

Merge pull request #41944 from madmiraal/remove-unused-imports

Remove unused Python imports.
This commit is contained in:
Rémi Verschelde
2020-09-10 13:09:48 +02:00
committed by GitHub
7 changed files with 0 additions and 9 deletions

View File

@@ -13,8 +13,6 @@ from collections import OrderedDict
# Local # Local
import methods import methods
import glsl_builders import glsl_builders
import version
from platform_methods import run_in_subprocess
# Scan possible build platforms # Scan possible build platforms

View File

@@ -4,7 +4,6 @@ Import("env")
import core_builders import core_builders
import make_binders import make_binders
from platform_methods import run_in_subprocess
env.core_sources = [] env.core_sources = []

View File

@@ -2,7 +2,6 @@
Import("env") Import("env")
from platform_methods import run_in_subprocess
import input_builders import input_builders

View File

@@ -4,7 +4,6 @@ All such functions are invoked in a subprocess on Windows to prevent build flaki
""" """
from platform_methods import subprocess_main from platform_methods import subprocess_main
from collections import OrderedDict
def make_splash(target, source, env): def make_splash(target, source, env):

View File

@@ -17,8 +17,6 @@
## ======================================================================== ## ## ======================================================================== ##
import os import os
import sys
import argparse
from array import array from array import array
# Generates a C++ file from the specified binary resource file # Generates a C++ file from the specified binary resource file

View File

@@ -1,6 +1,5 @@
import os import os
import os.path import os.path
import sys
import subprocess import subprocess
from SCons.Script import Dir, Environment from SCons.Script import Dir, Environment

View File

@@ -1,6 +1,5 @@
import os import os
import sys import sys
import subprocess
from methods import detect_darwin_sdk_path from methods import detect_darwin_sdk_path