From b9dfc95cf236471f1b620d5152a800753d764315 Mon Sep 17 00:00:00 2001 From: juozasget <32190964+juozasget@users.noreply.github.com> Date: Sat, 15 Sep 2018 13:26:59 +0300 Subject: [PATCH] Tuple test_requirements was too long, PEP8 Broken a long line into multiple lines inside tuple parenthesis. --- setup.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 670a7dc7..76aba273 100755 --- a/setup.py +++ b/setup.py @@ -54,7 +54,14 @@ requires = [ 'certifi>=2017.4.17' ] -test_requirements = ['pytest-httpbin==0.0.7', 'pytest-cov', 'pytest-mock', 'pytest-xdist', 'PySocks>=1.5.6, !=1.5.7', 'pytest>=2.8.0'] +test_requirements = [ + 'pytest-httpbin==0.0.7', + 'pytest-cov', + 'pytest-mock', + 'pytest-xdist', + 'PySocks>=1.5.6, !=1.5.7', + 'pytest>=2.8.0' +] about = {} with open(os.path.join(here, 'requests', '__version__.py'), 'r', 'utf-8') as f: