Skip to content

Commit

Permalink
switch from tuple[...] to typing.Tuple[...]
Browse files Browse the repository at this point in the history
  • Loading branch information
znd4 committed Nov 13, 2023
1 parent 34dc65d commit 7ba63e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_core.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
from pdm.cli.actions import textwrap
from pdm.project import Project
from typing import TYPE_CHECKING
from typing import TYPE_CHECKING, Tuple
import toml

if TYPE_CHECKING:
from pdm.pytest import PDMCallable


def check_env(project: Project, pdm: "PDMCallable", environ: tuple[tuple[str, str]]) -> None:
def check_env(project: Project, pdm: "PDMCallable", environ: Tuple[Tuple[str, str]]) -> None:
for key, val in environ:
assert (
val
Expand Down

0 comments on commit 7ba63e9

Please sign in to comment.