Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Feb 3, 2025
1 parent 0b95fad commit 2e031ff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/factory-stubs/helpers.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,16 @@ def simple_generate_batch(
klass: T, create: bool, size: int, **kwargs: Any
) -> list[T]: ...
def lazy_attribute(
func: Callable[[builder.Resolver[T]], V]
func: Callable[[builder.Resolver[T]], V],
) -> declarations.LazyAttribute[Any, V]: ...
def iterator(func: Callable[[], Iterator[V]]) -> declarations.Iterator[V, V]: ...
def sequence(func: Callable[[int], V]) -> declarations.Sequence[V]: ...
def lazy_attribute_sequence(
func: Callable[[builder.Resolver[T], int], V]
func: Callable[[builder.Resolver[T], int], V],
) -> declarations.LazyAttributeSequence[T, V]: ...
def container_attribute(
func: Callable[[builder.Resolver[T], tuple[builder.Resolver[Any], ...]], V]
func: Callable[[builder.Resolver[T], tuple[builder.Resolver[Any], ...]], V],
) -> declarations.ContainerAttribute[T, V]: ...
def post_generation(
fun: Callable[[T, bool, Any], V]
fun: Callable[[T, bool, Any], V],
) -> declarations.PostGeneration[T, V]: ...

0 comments on commit 2e031ff

Please sign in to comment.