Skip to content

Commit

Permalink
fix regex
Browse files Browse the repository at this point in the history
  • Loading branch information
JelleZijlstra committed Nov 25, 2021
1 parent dfa45ce commit c097111
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_black.py
Expand Up @@ -31,7 +31,7 @@

import click
import pytest
import regex as re
import re
from click import unstyle
from click.testing import CliRunner
from pathspec import PathSpec
Expand Down Expand Up @@ -70,7 +70,7 @@
R = TypeVar("R")

# 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
Expand Down

0 comments on commit c097111

Please sign in to comment.