Files
django-stubs/django/forms/formsets.pyi
Maxim Kurnikov a9f215bf64 initial commit
2018-07-29 18:12:23 +03:00

11 lines
168 B
Python

from typing import (
Any,
List,
)
def all_valid(formsets: List[Any]) -> bool: ...
class ManagementForm:
def __init__(self, *args, **kwargs) -> None: ...