diff options
author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-08-15 21:14:10 +0100 |
---|---|---|
committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-08-15 21:14:10 +0100 |
commit | fe089a9c41f014113afd56cc7927dcda6440ee86 (patch) | |
tree | 3241f6c94faaa37d1df1bec082a6405c47208e64 /setuptools/tests | |
parent | 9eea382997e3646ebc1eb3ec506b17dcc7d5a3aa (diff) | |
download | python-setuptools-git-fe089a9c41f014113afd56cc7927dcda6440ee86.tar.gz |
Remove unecessary comma
Diffstat (limited to 'setuptools/tests')
-rw-r--r-- | setuptools/tests/test_editable_install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_editable_install.py b/setuptools/tests/test_editable_install.py index cceb6653..6b5cdd1c 100644 --- a/setuptools/tests/test_editable_install.py +++ b/setuptools/tests/test_editable_install.py @@ -888,7 +888,7 @@ class TestCustomBuildExt: dist.cmdclass["build_ext"] = MyBuildExt @pytest.mark.skipif( - sys.platform != "linux", reason="compilers may fail without correct setup", + sys.platform != "linux", reason="compilers may fail without correct setup" ) def test_distutils_leave_inplace_files(self, tmpdir_cwd): jaraco.path.build({"module.c": ""}) |