Skip to content

Commit 6226ddb

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 9ab5847 commit 6226ddb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/factory-stubs/helpers.pyi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,16 @@ def simple_generate_batch(
4141
klass: T, create: bool, size: int, **kwargs: Any
4242
) -> list[T]: ...
4343
def lazy_attribute(
44-
func: Callable[[builder.Resolver[T]], V]
44+
func: Callable[[builder.Resolver[T]], V],
4545
) -> declarations.LazyAttribute[Any, V]: ...
4646
def iterator(func: Callable[[], Iterator[V]]) -> declarations.Iterator[V, V]: ...
4747
def sequence(func: Callable[[int], V]) -> declarations.Sequence[V]: ...
4848
def lazy_attribute_sequence(
49-
func: Callable[[builder.Resolver[T], int], V]
49+
func: Callable[[builder.Resolver[T], int], V],
5050
) -> declarations.LazyAttributeSequence[T, V]: ...
5151
def container_attribute(
52-
func: Callable[[builder.Resolver[T], tuple[builder.Resolver[Any], ...]], V]
52+
func: Callable[[builder.Resolver[T], tuple[builder.Resolver[Any], ...]], V],
5353
) -> declarations.ContainerAttribute[T, V]: ...
5454
def post_generation(
55-
fun: Callable[[T, bool, Any], V]
55+
fun: Callable[[T, bool, Any], V],
5656
) -> declarations.PostGeneration[T, V]: ...

0 commit comments

Comments
 (0)