Merge pull request #7846 from asottile/py36_black

py36+: update the target version of black to py36
This commit is contained in:
Anthony Sottile
2020-10-03 11:45:45 -07:00
committed by GitHub
16 changed files with 28 additions and 28 deletions

View File

@@ -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``.