summaryrefslogtreecommitdiff
path: root/src/_pytest/pytester.py
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2020-10-02 13:09:35 -0700
committerAnthony Sottile <asottile@umich.edu>2020-10-03 08:17:22 -0700
commitf295b0267d14017c95144ed191fbc8ba75aeb789 (patch)
tree97a6ed56631ec3f33a20ec773e93c46f1dc59b30 /src/_pytest/pytester.py
parent6ed07a1c2547667d1d2529ed8a3e457ef6d8f998 (diff)
downloadpytest-f295b0267d14017c95144ed191fbc8ba75aeb789.tar.gz
py36+: update the target version of black to py36
Diffstat (limited to 'src/_pytest/pytester.py')
-rw-r--r--src/_pytest/pytester.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/_pytest/pytester.py b/src/_pytest/pytester.py
index 29690f0f0..6ced7e250 100644
--- a/src/_pytest/pytester.py
+++ b/src/_pytest/pytester.py
@@ -1211,7 +1211,7 @@ class Testdir:
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
stdin=CLOSE_STDIN,
- **kw
+ **kw,
):
"""Invoke subprocess.Popen.
@@ -1530,7 +1530,7 @@ class LineMatcher:
match_func: Callable[[str, str], bool],
match_nickname: str,
*,
- consecutive: bool = False
+ consecutive: bool = False,
) -> None:
"""Underlying implementation of ``fnmatch_lines`` and ``re_match_lines``.