mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 21:14:49 +08:00
11 lines
168 B
Python
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: ... |