diff options
author | Alexander Duryagin <aduryagin@gmail.com> | 2018-08-17 17:38:22 +0300 |
---|---|---|
committer | Alexander Duryagin <aduryagin@gmail.com> | 2018-08-17 17:38:22 +0300 |
commit | 1fc75056079f49d980dd664222bae47a713906ca (patch) | |
tree | dfe6612c07726927234726b59728561376b07281 /setuptools/tests/test_namespaces.py | |
parent | d2346c91804333b29fe63b8e1414cd764eb1ef5f (diff) | |
download | external_python_setuptools-1fc75056079f49d980dd664222bae47a713906ca.tar.gz external_python_setuptools-1fc75056079f49d980dd664222bae47a713906ca.tar.bz2 external_python_setuptools-1fc75056079f49d980dd664222bae47a713906ca.zip |
change formatting to fix flake8 warning
Diffstat (limited to 'setuptools/tests/test_namespaces.py')
-rw-r--r-- | setuptools/tests/test_namespaces.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/setuptools/tests/test_namespaces.py b/setuptools/tests/test_namespaces.py index 52ac6a68..839f5651 100644 --- a/setuptools/tests/test_namespaces.py +++ b/setuptools/tests/test_namespaces.py @@ -12,8 +12,10 @@ from setuptools.command import test class TestNamespaces: - @pytest.mark.xfail(sys.version_info < (3, 5), - reason="Requires importlib.util.module_from_spec") + @pytest.mark.xfail( + sys.version_info < (3, 5), + reason="Requires importlib.util.module_from_spec", + ) @pytest.mark.xfail( os.environ.get("APPVEYOR"), reason="https://github.com/pypa/setuptools/issues/851", |