mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-08-03 14:38:28 +08:00
Add __all__ part 2 (#13719)
--------- Co-authored-by: Avasam <samuel.06@hotmail.com>
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user