Skip to content

Commit 976ac85

Browse files
committed
Use built-in tuple for type
1 parent ba43a4c commit 976ac85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import re
77
from importlib import reload
88
from types import ModuleType
9-
from typing import Generator, Optional, Tuple, Type
9+
from typing import Generator, Optional, Type
1010
from unittest import mock
1111

1212
import pytest
@@ -52,7 +52,7 @@ def without_import(
5252

5353
def check_present(
5454
caplog: pytest.LogCaptureFixture,
55-
*conditions: Tuple,
55+
*conditions: tuple,
5656
clear: bool = True,
5757
) -> None:
5858
"""

0 commit comments

Comments
 (0)