Update tracetools_read imports

This commit is contained in:
Christophe Bedard 2019-08-03 10:49:06 +02:00
parent 3b98bca63b
commit 7ad97f450d
2 changed files with 8 additions and 8 deletions

View file

@ -20,12 +20,12 @@ from typing import List
from typing import Union from typing import Union
import unittest import unittest
from tracetools_read.utils import DictEvent from tracetools_read import DictEvent
from tracetools_read.utils import get_event_name from tracetools_read import get_event_name
from tracetools_read.utils import get_event_timestamp from tracetools_read import get_event_timestamp
from tracetools_read.utils import get_field from tracetools_read import get_field
from tracetools_read.utils import get_procname from tracetools_read import get_procname
from tracetools_read.utils import get_trace_events from tracetools_read import get_trace_events
from .utils import cleanup_trace from .utils import cleanup_trace
from .utils import get_event_names from .utils import get_event_names

View file

@ -25,8 +25,8 @@ from launch import LaunchService
from launch_ros import get_default_launch_description from launch_ros import get_default_launch_description
from launch_ros.actions import Node from launch_ros.actions import Node
from tracetools_launch.action import Trace from tracetools_launch.action import Trace
from tracetools_read.utils import DictEvent from tracetools_read import DictEvent
from tracetools_read.utils import get_event_name from tracetools_read import get_event_name
def run_and_trace( def run_and_trace(