Add __all__ part 2 (#13719)

---------

Co-authored-by: Avasam <samuel.06@hotmail.com>
This commit is contained in:
Semyon Moroz
2025-03-31 18:27:19 -04:00
committed by GitHub
co-authored by Avasam
parent 0104531422
commit a3c8fce58d
132 changed files with 1057 additions and 171 deletions
@@ -1,6 +1,3 @@
# TODO: missing from stub
wtforms.form.__all__
# Error: is not present at runtime
# =============================
# This is hack to get around Field.__new__ not being able to return
+2
View File
@@ -83,3 +83,5 @@ class Form(BaseForm, metaclass=FormMeta):
def __setitem__(self, name: str, value: None) -> None: ... # type: ignore[override]
def __delitem__(self, name: str) -> None: ...
def __delattr__(self, name: str) -> None: ...
__all__ = ("BaseForm", "Form")