diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2020-01-19 13:25:45 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-01-19 13:25:45 -0500 |
| commit | 5ce9e5f343ca14f9875106f37f16ad498b294183 (patch) | |
| tree | c7d0ed37234ba1d6d4e253bdbf866c63793edfc0 /setuptools/tests/test_wheel.py | |
| parent | 313ac58f51c6ef92170647c4cc8626043f68a26b (diff) | |
| download | python-setuptools-git-5ce9e5f343ca14f9875106f37f16ad498b294183.tar.gz | |
👹 Feed the hobgoblins (delint).
Diffstat (limited to 'setuptools/tests/test_wheel.py')
| -rw-r--r-- | setuptools/tests/test_wheel.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/setuptools/tests/test_wheel.py b/setuptools/tests/test_wheel.py index 39eb06ee..f72ccbbf 100644 --- a/setuptools/tests/test_wheel.py +++ b/setuptools/tests/test_wheel.py @@ -125,11 +125,12 @@ def flatten_tree(tree): def format_install_tree(tree): - return {x.format( - py_version=PY_MAJOR, - platform=get_platform(), - shlib_ext=get_config_var('EXT_SUFFIX') or get_config_var('SO')) - for x in tree} + return { + x.format( + py_version=PY_MAJOR, + platform=get_platform(), + shlib_ext=get_config_var('EXT_SUFFIX') or get_config_var('SO')) + for x in tree} def _check_wheel_install(filename, install_dir, install_tree_includes, |
