5 lines
132 B
Python
5 lines
132 B
Python
# Process trace events and create ROS model
|
|
|
|
def ros_import(events):
|
|
for event in events:
|
|
print(f'event: {str(event)}')
|