Skip to content

Commit b388081

Browse files
committed
Fix linting errors
1 parent 07cd207 commit b388081

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

setuptools/command/easy_install.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
from distutils.command.build_scripts import first_line_re
2323
from distutils.spawn import find_executable
2424
import sys
25-
import platform
2625
import os
2726
import zipimport
2827
import shutil

setuptools/tests/test_windows_wrappers.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ def create_script(cls, tmpdir):
5151
w = pkg_resources.resource_string('setuptools', cls.wrapper_source)
5252
f.write(w)
5353

54+
5455
def win_launcher_exe(prefix):
5556
""" A simple routine to select launcher script based on platform."""
5657
assert prefix in ('cli', 'gui')
@@ -59,6 +60,7 @@ def win_launcher_exe(prefix):
5960
else:
6061
return "{}-32.exe".format(prefix)
6162

63+
6264
class TestCLI(WrapperTester):
6365
script_name = 'foo-script.py'
6466
wrapper_name = 'foo.exe'

0 commit comments

Comments
 (0)