Skip to content

Commit 7263d06

Browse files
nektor211bluetech
authored andcommitted
Fix type hints for assertFormError and assertForSetError
Fix #1137.
1 parent b373db6 commit 7263d06

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ Nicolas Delaby <[email protected]>
2020
Hasan Ramezani <[email protected]>
2121
Michael Howitz
2222
Mark Gensler
23+
Pavel Taufer

pytest_django/asserts.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ def assertion_func(*args, **kwargs):
5454

5555

5656
if TYPE_CHECKING:
57+
from django import forms
5758
from django.http.response import HttpResponseBase
5859

5960
def assertRedirects(
@@ -93,17 +94,15 @@ def assertNotContains(
9394
...
9495

9596
def assertFormError(
96-
response: HttpResponseBase,
97-
form: str,
97+
form: forms.BaseForm,
9898
field: str | None,
9999
errors: str | Sequence[str],
100100
msg_prefix: str = ...,
101101
) -> None:
102102
...
103103

104-
def assertFormsetError(
105-
response: HttpResponseBase,
106-
formset: str,
104+
def assertFormSetError(
105+
formset: forms.BaseFormSet,
107106
form_index: int | None,
108107
field: str | None,
109108
errors: str | Sequence[str],

0 commit comments

Comments
 (0)