Skip to content

Commit 6c17ab3

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent f92a904 commit 6c17ab3

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

testing/test_collection.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
# mypy: allow-untyped-defs
22
from __future__ import annotations
33

4-
from collections.abc import Sequence
54
from collections.abc import Sequence
65
import os
76
from pathlib import Path
87
from pathlib import PurePath
98
import pprint
10-
import re
119
import shutil
1210
import sys
1311
import tempfile
@@ -2709,7 +2707,6 @@ def test_1(): pass
27092707

27102708

27112709
class TestRequireUniqueParametrizationtIds:
2712-
27132710
# Change the test data to native Python types
27142711
CASES = [
27152712
([(1, 1), (1, 1)], {"1-1": [0, 1]}),
@@ -2827,4 +2824,4 @@ def _convert_to_resolved_ids(
28272824
def _convert_to_argument_values(
28282825
self, parametrize_args: Sequence[tuple[int, int]]
28292826
) -> Sequence[str]:
2830-
return [str(argument) for argument in parametrize_args]
2827+
return [str(argument) for argument in parametrize_args]

0 commit comments

Comments
 (0)