Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixing missing import bugs #139

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion rqt_py_common/src/rqt_py_common/layout_util.py
Expand Up @@ -33,7 +33,7 @@
# Author: Isaac Saito

from python_qt_binding.QtCore import Qt
from python_qt_binding.QtWidgets import QWidgetItem
from python_qt_binding.QtWidgets import QWidgetItem, QSpacerItem
import roslib
import rospy

Expand Down
2 changes: 1 addition & 1 deletion rqt_py_common/src/rqt_py_common/rosaction.py
Expand Up @@ -497,7 +497,7 @@ def object_representer(dumper, obj):
val = getattr(obj, key)
if type(val) == list and len(val) > MAX_DEFAULT_NON_FLOW_ITEMS:
dumper.default_flow_style = flow_style_
if time_offset is not None and isinstance(val, Time):
if time_offset is not None and isinstance(val, rospy.Time):
ndict[key] = val - time_offset
# create initial array element (e.g. for code completion)
elif fill_arrays_ == True and val == []:
Expand Down