summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2022-02-25 11:36:04 -0500
committerJason R. Coombs <jaraco@jaraco.com>2022-02-25 11:36:07 -0500
commit25c91d8484205441dad4f34968221d35ff351275 (patch)
tree11f8f26b34f58a6acbc37591d4c2a53955a24ba4
parent3e7244107b170a5d43ed6ed27a325247da20e61d (diff)
downloadpytest-runner-25c91d8484205441dad4f34968221d35ff351275.tar.gz
⚫ Fade to black.
(clean up cruft created by black)
-rw-r--r--ptr.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ptr.py b/ptr.py
index a81a619..41192fa 100644
--- a/ptr.py
+++ b/ptr.py
@@ -90,7 +90,7 @@ class PyTest(orig.test):
(
'index-url=',
None,
- "Specify an index url from which to retrieve " "dependencies",
+ "Specify an index url from which to retrieve dependencies",
),
(
'allow-hosts=',
@@ -101,7 +101,7 @@ class PyTest(orig.test):
(
'addopts=',
None,
- "Additional options to be passed verbatim to the " "pytest runner",
+ "Additional options to be passed verbatim to the pytest runner",
),
]
@@ -190,7 +190,7 @@ class PyTest(orig.test):
for attr in 'allow_hosts index_url'.split():
setattr(dist, attr, getattr(self, attr))
for attr in (
- 'dependency_links install_requires ' 'tests_require extras_require '
+ 'dependency_links install_requires tests_require extras_require '
).split():
setattr(dist, attr, getattr(self.distribution, attr))
installed_dists = self.install_dists(dist)