Skip to content

Commit 7924519

Browse files
committed
asserts: fix annoying py35 syntax error
1 parent a54ae98 commit 7924519

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: pytest_django/asserts.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -116,15 +116,15 @@ def assertRaisesMessage(
116116
expected_exception: BaseException,
117117
expected_message: str,
118118
*args,
119-
**kwargs,
119+
**kwargs
120120
):
121121
...
122122

123123
def assertWarnsMessage(
124124
expected_warning: Warning,
125125
expected_message: str,
126126
*args,
127-
**kwargs,
127+
**kwargs
128128
):
129129
...
130130

@@ -202,7 +202,7 @@ def assertNumQueries(
202202
func=...,
203203
*args,
204204
using: str = ...,
205-
**kwargs,
205+
**kwargs
206206
):
207207
...
208208

0 commit comments

Comments
 (0)