Fixed event system logic

This commit is contained in:
2022-01-30 17:19:46 -06:00
parent a78c7e2261
commit 42f2be0602
3 changed files with 6 additions and 3 deletions

View File

@@ -14,7 +14,10 @@ class Builtins(IPCServerMixin):
"""Docstring for __builtins__ extender"""
def __init__(self):
# NOTE: The format used is list of [type, target, data]
# NOTE: The format used is list of [type, target, data] Where:
# type is useful context for control flow,
# target is the method to call,
# data is the method parameters to give
# Where data may be any kind of data
self._gui_events = []
self._fm_events = []