Skip to content

Commit

Permalink
fix regex (#2643)
Browse files Browse the repository at this point in the history
  • Loading branch information
JelleZijlstra committed Nov 26, 2021
1 parent db27154 commit 17e42cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_black.py
Original file line number Diff line number Diff line change
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 17e42cb

Please sign in to comment.