Add docstring

This commit is contained in:
Christophe Bedard 2019-06-06 09:22:21 +02:00
parent 9ea97f23ec
commit 7e99bcb0ab

View file

@ -13,6 +13,10 @@ def ros_process(events):
processor.handle(event)
class RosProcessor():
"""
ROS-aware event processing/handling class.
Handles a trace's events and builds a model with the data.
"""
def __init__(self):
# TODO add other stuff
self.callbacks = []