Skip to content

Commit

Permalink
Additional lint cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jryburn committed Mar 5, 2024
1 parent a426a43 commit 4402183
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions extensions/eda/plugins/event_source/kentik_webhook.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import asyncio
import json
import logging
from typing import Any, Dict
from typing import Any

from aiohttp import web

Expand Down Expand Up @@ -139,7 +139,14 @@ class MockQueue:
"""A fake queue."""

async def put(self: "MockQueue", event: dict) -> None:
"""Print the event."""
"""Print the event.
Parameters
----------
event : dict
Event
"""
print(event) # noqa: T201

asyncio.run(
Expand Down

0 comments on commit 4402183

Please sign in to comment.