Skip to content

Commit 3982c3d

Browse files
committed
[Python 3]
1 parent 576bf36 commit 3982c3d

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

Diff for: src/dynamic_graph/ros/__init__.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# flake8: noqa
2-
from ros import RosPublish as RosImport
3-
from ros import RosSubscribe as RosExport
4-
5-
from ros_publish import RosPublish
6-
from ros_subscribe import RosSubscribe
2+
from .ros import RosPublish as RosImport
3+
from .ros import RosSubscribe as RosExport
4+
from .ros_publish import RosPublish
5+
from .ros_subscribe import RosSubscribe

Diff for: src/dynamic_graph/ros/ros.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
from ros_publish import RosPublish
2-
from ros_subscribe import RosSubscribe
3-
from ros_time import RosTime
1+
from .ros_publish import RosPublish
2+
from .ros_subscribe import RosSubscribe
3+
from .ros_time import RosTime
44

55

66
class Ros(object):

0 commit comments

Comments
 (0)