Skip to content

Commit

Permalink
sort imports
Browse files Browse the repository at this point in the history
  • Loading branch information
orsinium committed Apr 11, 2023
1 parent 0469725 commit 65ba2a8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions pytypest/_case.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import dataclasses
from typing import Any, Generic, TypeVar

from typing_extensions import ParamSpec


Expand Down
1 change: 1 addition & 0 deletions pytypest/_fixture.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from dataclasses import dataclass, field
from enum import Enum
from typing import Callable, Generic, Iterator, Literal, TypeVar

from typing_extensions import ParamSpec

from ._manager import defer
Expand Down
1 change: 1 addition & 0 deletions pytypest/_fixture_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

if TYPE_CHECKING:
from typing import Callable, Iterator, Literal, TypeVar

from typing_extensions import ParamSpec

R = TypeVar('R')
Expand Down
2 changes: 1 addition & 1 deletion pytypest/_parametrize.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

import inspect
from typing import TYPE_CHECKING, Callable
from typing_extensions import ParamSpec

import pytest
from typing_extensions import ParamSpec

from ._case import Case

Expand Down
1 change: 1 addition & 0 deletions pytypest/experimental/_attr.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

from dataclasses import dataclass
from typing import TYPE_CHECKING, Any, Generic, TypeVar, overload

from typing_extensions import ParamSpec


Expand Down

0 comments on commit 65ba2a8

Please sign in to comment.