Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing imports, remove wildcard and unused imports #18

Merged
merged 1 commit into from
Jul 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
import os
import platform
import sys
import subprocess
from pathlib import Path
from SCons.Errors import UserError

EnsureSConsVersion(4, 0)

Expand Down
1 change: 0 additions & 1 deletion godot-tools/macos.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import os
import sys
import macos_osxcross

Expand Down
4 changes: 1 addition & 3 deletions godot-tools/targets.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import os
import sys
from SCons.Script import ARGUMENTS
from SCons.Variables import *
from SCons.Variables import BoolVariable, EnumVariable
from SCons.Variables.BoolVariable import _text2bool


Expand Down
3 changes: 2 additions & 1 deletion godot-tools/windows.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import os
import sys

import my_spawn

from SCons.Tool import msvc, mingw
from SCons.Variables import *
from SCons.Variables import BoolVariable


def options(opts):
Expand Down