Skip to content

Commit

Permalink
asserts: fix annoying py35 syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
bluetech committed May 15, 2021
1 parent a54ae98 commit 7924519
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pytest_django/asserts.py
Expand Up @@ -116,15 +116,15 @@ def assertRaisesMessage(
expected_exception: BaseException,
expected_message: str,
*args,
**kwargs,
**kwargs
):
...

def assertWarnsMessage(
expected_warning: Warning,
expected_message: str,
*args,
**kwargs,
**kwargs
):
...

Expand Down Expand Up @@ -202,7 +202,7 @@ def assertNumQueries(
func=...,
*args,
using: str = ...,
**kwargs,
**kwargs
):
...

Expand Down

0 comments on commit 7924519

Please sign in to comment.