Skip to content

Commit a9f2e96

Browse files
authored
Merge pull request #58 from scop/renovate/major-black
chore(deps): update black to v22 (major)
2 parents e4edd2a + 2734253 commit a9f2e96

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/psf/black
3-
rev: 21.11b1
3+
rev: 22.1.0
44
hooks:
55
- id: black
66

requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-r requirements-test.txt
22

3-
black ==21.11b1
3+
black ==22.1.0
44

55
flake8 ==4.0.1
66
pycodestyle ==2.8.0

test_hashpipe.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def test_grouping() -> None:
176176
TestCase(
177177
key=bytes.fromhex("0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b"),
178178
data=b"Well, Hi There!",
179-
pattern=re.compile(br"Well, (Hi There)"),
179+
pattern=re.compile(rb"Well, (Hi There)"),
180180
algorithm="md5",
181181
result=(
182182
"Well, %s!" % _format_hash(b"9294727a3638bb1c13f48ef8158bfc9d").decode()
@@ -185,7 +185,7 @@ def test_grouping() -> None:
185185
TestCase(
186186
key=bytes.fromhex("0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b"),
187187
data=b"Well, Hi There!",
188-
pattern=re.compile(br"(?P<name_ignored>Hi There)"),
188+
pattern=re.compile(rb"(?P<name_ignored>Hi There)"),
189189
algorithm="md5",
190190
result=(
191191
"Well, %s!" % _format_hash(b"9294727a3638bb1c13f48ef8158bfc9d").decode()
@@ -194,7 +194,7 @@ def test_grouping() -> None:
194194
TestCase(
195195
key=bytes.fromhex("0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b"),
196196
data=b"Well, Hi There!",
197-
pattern=re.compile(br"\b(Hi There)\b"),
197+
pattern=re.compile(rb"\b(Hi There)\b"),
198198
algorithm="sha1",
199199
result=(
200200
"Well, %s!"

0 commit comments

Comments
 (0)