fix: removed unused imported Objects (#33304)
This commit is contained in:
parent
08d54d2416
commit
fdb60240f3
2 changed files with 1 additions and 6 deletions
|
@ -1,18 +1,13 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
import atexit
|
|
||||||
import contextlib
|
import contextlib
|
||||||
import errno
|
import errno
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
import ssl
|
|
||||||
import stat
|
|
||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
import tarfile
|
|
||||||
import tempfile
|
|
||||||
# Python 3 / 2 compat import
|
# Python 3 / 2 compat import
|
||||||
try:
|
try:
|
||||||
from urllib.request import urlopen
|
from urllib.request import urlopen
|
||||||
|
|
|
@ -16,7 +16,7 @@ sys.path.append(
|
||||||
os.path.abspath(os.path.dirname(os.path.abspath(__file__)) + "/../.."))
|
os.path.abspath(os.path.dirname(os.path.abspath(__file__)) + "/../.."))
|
||||||
|
|
||||||
from zipfile import ZipFile
|
from zipfile import ZipFile
|
||||||
from lib.config import PLATFORM, get_target_arch, get_env_var, s3_config, \
|
from lib.config import PLATFORM, get_target_arch,s3_config, \
|
||||||
get_zip_name, enable_verbose_mode, get_platform_key
|
get_zip_name, enable_verbose_mode, get_platform_key
|
||||||
from lib.util import get_electron_branding, execute, get_electron_version, \
|
from lib.util import get_electron_branding, execute, get_electron_version, \
|
||||||
s3put, get_electron_exec, get_out_dir, \
|
s3put, get_electron_exec, get_out_dir, \
|
||||||
|
|
Loading…
Reference in a new issue