Added Singleton class to inherit as needed

This commit is contained in:
2023-03-27 19:53:47 -05:00
parent 48d6c505a7
commit ef03030c88
6 changed files with 33 additions and 9 deletions

View File

@@ -4,11 +4,11 @@ from collections import defaultdict
# Lib imports
# Application imports
from .singleton import Singleton
class EventSystem:
class EventSystem(Singleton):
""" Create event system. """
def __init__(self):