Skip to content

Commit

Permalink
fix: remove unused typevar
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravencentric committed Oct 11, 2024
1 parent 2ac1502 commit 46612e2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/nzb/_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@

from datetime import datetime, timezone
from os import PathLike
from typing import Annotated, TypeAlias, TypeVar, Union
from typing import Annotated, TypeAlias, Union

from pydantic import AfterValidator

T = TypeVar("T")

StrPath: TypeAlias = Union[str, PathLike[str]]
"""String or pathlib.Path"""

Expand Down

0 comments on commit 46612e2

Please sign in to comment.