forked from p34709852/monkey
Island: Add docstring to PyPubSubIslandEventQueue
This commit is contained in:
parent
17017d6962
commit
67c78abee1
|
@ -10,6 +10,10 @@ logger = logging.getLogger(__name__)
|
|||
|
||||
|
||||
class PyPubSubIslandEventQueue(IIslandEventQueue):
|
||||
"""
|
||||
Implements IIslandEventQueue using pypubsub
|
||||
"""
|
||||
|
||||
def __init__(self, pypubsub_publisher: Publisher):
|
||||
self._pypubsub_publisher_wrapper = PyPubSubPublisherWrapper(pypubsub_publisher)
|
||||
|
||||
|
|
Loading…
Reference in New Issue