Skip to content

Commit f3efc89

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 303aa66 commit f3efc89

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

src/pytest_flask/live_server.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ def run(
2222
debug: Union[bool, None] = None,
2323
load_dotenv: bool = True,
2424
**options: Any,
25-
) -> None:
26-
...
25+
) -> None: ...
2726

2827

2928
# force 'fork' on macOS

src/pytest_flask/plugin.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,9 @@
3232
class _SupportsPytestFlaskEqual(Protocol):
3333
status_code: int
3434

35-
def __eq__(self, other: Any) -> bool:
36-
...
35+
def __eq__(self, other: Any) -> bool: ...
3736

38-
def __ne__(self, other: Any) -> bool:
39-
...
37+
def __ne__(self, other: Any) -> bool: ...
4038

4139

4240
class JSONResponse:

0 commit comments

Comments
 (0)