diff --git a/tests/test_fieldtypes.py b/tests/test_fieldtypes.py index 1a3daef..ace9db6 100644 --- a/tests/test_fieldtypes.py +++ b/tests/test_fieldtypes.py @@ -7,7 +7,7 @@ import posixpath import types from datetime import datetime, timedelta, timezone -from typing import Callable, Tuple +from typing import Callable import pytest @@ -691,7 +691,7 @@ def test_path() -> None: ], ) def test_path_multiple_parts( - path_parts: Tuple[str | pathlib.PurePath, ...], expected_instance: type[pathlib.PurePath] + path_parts: tuple[str | pathlib.PurePath, ...], expected_instance: type[pathlib.PurePath] ) -> None: assert isinstance(flow.record.fieldtypes.path(*path_parts), expected_instance)