We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 303aa66 commit f3efc89Copy full SHA for f3efc89
src/pytest_flask/live_server.py
@@ -22,8 +22,7 @@ def run(
22
debug: Union[bool, None] = None,
23
load_dotenv: bool = True,
24
**options: Any,
25
- ) -> None:
26
- ...
+ ) -> None: ...
27
28
29
# force 'fork' on macOS
src/pytest_flask/plugin.py
@@ -32,11 +32,9 @@
32
class _SupportsPytestFlaskEqual(Protocol):
33
status_code: int
34
35
- def __eq__(self, other: Any) -> bool:
36
+ def __eq__(self, other: Any) -> bool: ...
37
38
- def __ne__(self, other: Any) -> bool:
39
+ def __ne__(self, other: Any) -> bool: ...
40
41
42
class JSONResponse:
0 commit comments