Skip to content

Commit

Permalink
misc.
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBernstorff committed Jan 4, 2024
1 parent de398ab commit 509915f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SRC_PATH = iter
SRC_PATH = iterpy
MAKEFLAGS = --no-print-directory

install-dev:
Expand Down
8 changes: 4 additions & 4 deletions iterpy/_iter.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ This type stub file was generated by pyright.

from collections.abc import (
Callable,
iterpyable,
iterpyator,
Iterable,
Iterator,
Sequence,
)
from typing import Generic, Iterable, Iterator, TypeVar, overload
from typing import Generic, TypeVar, overload

S = TypeVar("S")
T = TypeVar("T")
U = TypeVar("U")

iterpyables: TypeVar = (
iterpyable | iterpyator | tuple | list | set | frozenset # type: ignore
Iterable | Iterator | tuple | list | set | frozenset # type: ignore
)

class Iter(Generic[T]):
Expand Down

0 comments on commit 509915f

Please sign in to comment.