Skip to content

Commit

Permalink
fix: Resolve issue reported by ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
michalbil committed Apr 11, 2024
1 parent f697248 commit 2a6852a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions extensions/eda/plugins/event_source/logs.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ async def status() -> web.Response:
Returns
-------
A web.Response object with status 200 and the text "up" returned by the function.
"""
return web.Response(status=200, text="up")

Expand All @@ -78,6 +79,7 @@ async def webhook(request: web.Request) -> web.Response:
Returns
-------
A web.Response object with status 200 and the status.
"""
try:
payload = await request.json()
Expand Down

0 comments on commit 2a6852a

Please sign in to comment.