Skip to content

Commit

Permalink
Phase out Tuple in favor of tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
twiggler committed Oct 10, 2024
1 parent e4d1b45 commit 84f087f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_fieldtypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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)

Expand Down

0 comments on commit 84f087f

Please sign in to comment.