fix: add return type annotation to abstract _publish method (#32493)

This commit is contained in:
J0su3Code
2026-02-23 18:12:43 +00:00
committed by GitHub
parent 7c60ad01d3
commit 80f49367eb

View File

@@ -133,7 +133,7 @@ class AppQueueManager(ABC):
self._publish(event, pub_from)
@abstractmethod
def _publish(self, event: AppQueueEvent, pub_from: PublishFrom):
def _publish(self, event: AppQueueEvent, pub_from: PublishFrom) -> None:
"""
Publish event to queue
:param event: