diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-07-26 10:43:08 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-07-26 10:43:08 -0400 |
commit | 268ef5f553f29977f708c256ee398c9e29cb4da7 (patch) | |
tree | 20af33f93edce4c94c4c2a3ac22d3cccebefb4b0 | |
parent | f3b177e9c2b77104ddebaec7b581e2aee73a1184 (diff) | |
download | external_python_setuptools-268ef5f553f29977f708c256ee398c9e29cb4da7.tar.gz external_python_setuptools-268ef5f553f29977f708c256ee398c9e29cb4da7.tar.bz2 external_python_setuptools-268ef5f553f29977f708c256ee398c9e29cb4da7.zip |
Remove hanging indent
-rwxr-xr-x | setup.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -106,8 +106,10 @@ class install_with_pth(install): install.finalize_options(self) # undo secondary effect of `extra_path` adding to `install_lib` - install_suffix = os.path.relpath(self.install_lib, - self.install_libbase) + install_suffix = os.path.relpath( + self.install_lib, + self.install_libbase, + ) if install_suffix == self._pth_contents: self.install_lib = self.install_libbase |