Skip to content

Commit 8aa366d

Browse files
committed
Update setuptools/tests/test_wheel.py
Attempt to fix flake8
1 parent 8122993 commit 8aa366d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setuptools/tests/test_wheel.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -695,6 +695,7 @@ def build_wheel(extra_file_defs=None, **kwargs):
695695
install_tree, project_name,
696696
version, None)
697697
w = Wheel(filename)
698-
script_sh = pathlib.Path(install_dir) / w.egg_name() / "EGG-INFO" / "scripts" / "script.sh"
698+
base = pathlib.Path(install_dir) / w.egg_name()
699+
script_sh = base / "EGG-INFO" / "scripts" / "script.sh"
699700
assert script_sh.exists()
700701
assert oct(stat.S_IMODE(script_sh.stat().st_mode)) == "0o777"

0 commit comments

Comments
 (0)