This commit is contained in:
Jelle Zijlstra 2021-11-25 18:34:19 -08:00 committed by GitHub
parent db2715441a
commit 17e42cb94b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@
import click import click
import pytest import pytest
import regex as re import re
from click import unstyle from click import unstyle
from click.testing import CliRunner from click.testing import CliRunner
from pathspec import PathSpec from pathspec import PathSpec
@ -70,7 +70,7 @@
R = TypeVar("R") R = TypeVar("R")
# Match the time output in a diff, but nothing else # Match the time output in a diff, but nothing else
DIFF_TIME = re.compile(r"\t[\d-:+\. ]+") DIFF_TIME = re.compile(r"\t[\d\-:+\. ]+")
@contextmanager @contextmanager