Skip to content

Commit

Permalink
chore: auto fixes from pre-commit hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Aug 15, 2024
1 parent 602ebb5 commit b2b3233
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@
from typing import TYPE_CHECKING

import pytest
from deadnews_template_python.app import HEALTH, HELLO_WORLD, ITEMS, app
from starlette import status
from starlette.testclient import TestClient

from deadnews_template_python.app import HEALTH, HELLO_WORLD, ITEMS, app

if TYPE_CHECKING:
from httpx import Response


@pytest.fixture()
@pytest.fixture
def client() -> TestClient:
return TestClient(app)

Expand Down

0 comments on commit b2b3233

Please sign in to comment.