Skip to content

Commit 1813e9e

Browse files
authored
.
1 parent 8d17f10 commit 1813e9e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pytest_django/fixtures.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
Literal,
1717
Optional,
1818
Protocol,
19-
TypeVar,
2019
Tuple,
21-
runtime_checkable,
20+
TypeVar,
2221
Union,
22+
runtime_checkable,
2323
)
2424

2525
import pytest
@@ -73,7 +73,7 @@ class QueryCaptureContextProtocol(Protocol):
7373
def captured_queries(self) -> List[Dict[str, Any]]:
7474
...
7575

76-
def __enter__(self) -> "QueryCaptureContextProtocol":
76+
def __enter__(self) -> QueryCaptureContextProtocol:
7777
...
7878

7979
def __exit__(self, exc_type: Any, exc_value: Any, traceback: Any) -> None:

0 commit comments

Comments
 (0)