Skip to content

Commit

Permalink
mypy fix in 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
davorrunje committed Oct 8, 2024
1 parent fc41d4a commit 2e565aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastagency/ui/mesop/timer.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def configure_static_file_serving(
)

@app.route(f"/{WEB_COMPONENTS_PATH_SEGMENT}/__fast_agency_internal__/<path:path>")
def serve_web_components_fast_agency(path: str) -> Response:
def serve_web_components_fast_agency(path: str) -> Response: # type: ignore[misc]

Check warning on line 42 in fastagency/ui/mesop/timer.py

View check run for this annotation

Codecov / codecov/patch

fastagency/ui/mesop/timer.py#L41-L42

Added lines #L41 - L42 were not covered by tests
logger.info(f"Serve web components fast agency: {path}")

root = Path(__file__).parents[3].resolve()
Expand Down

0 comments on commit 2e565aa

Please sign in to comment.