From 23d3f179a28e91ca7162cb9c5ca3d782c29f9e9d Mon Sep 17 00:00:00 2001 From: Shreya Malviya Date: Tue, 9 Aug 2022 00:04:19 +0530 Subject: [PATCH] Common: Rename PypubsubEventQueue -> EventQueue and pypubsub_event_queue.py -> event_queue.py --- .../event_queue/{pypubsub_event_queue.py => event_queue.py} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename monkey/common/event_queue/{pypubsub_event_queue.py => event_queue.py} (97%) diff --git a/monkey/common/event_queue/pypubsub_event_queue.py b/monkey/common/event_queue/event_queue.py similarity index 97% rename from monkey/common/event_queue/pypubsub_event_queue.py rename to monkey/common/event_queue/event_queue.py index 99e1ed32c..83f6fb833 100644 --- a/monkey/common/event_queue/pypubsub_event_queue.py +++ b/monkey/common/event_queue/event_queue.py @@ -7,7 +7,7 @@ from common.events import AbstractEvent from .i_event_queue import IEventQueue -class PypubsubEventQueue(IEventQueue): +class EventQueue(IEventQueue): @staticmethod def subscribe_all(subscriber: Callable[..., Any]): pub.subscribe(listener=subscriber, topicName=pub.ALL_TOPICS)