diff --git a/extensions/eda/plugins/event_source/journald.py b/extensions/eda/plugins/event_source/journald.py index 83bf9bef..be3b2486 100644 --- a/extensions/eda/plugins/event_source/journald.py +++ b/extensions/eda/plugins/event_source/journald.py @@ -29,7 +29,7 @@ from systemd import journal -async def main(queue: asyncio.Queue, args: dict[str, Any]) -> str: # noqa=D417 +async def main(queue: asyncio.Queue, args: dict[str, Any]) -> str: # noqa: D417 """Read journal entries and add them to the provided queue. Args: @@ -77,6 +77,6 @@ class MockQueue: async def put(self: str, event: str) -> str: """Add the event to the queue and print it.""" - print(event) # noqa=T201 + print(event) # noqa: T201 asyncio.run(main(MockQueue(), {"match": "ALL"}))