Skip to content

Commit 6391e3e

Browse files
committed
make python2 compatible
1 parent 0251c88 commit 6391e3e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ ros3d/static/
1010

1111
# OS X
1212
.DS_Store
13+
*.ipynb

jupyros/ros3d.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ def quick_widget_decorator(cls):
3434

3535
register = _quick_widget('jupyter-ros', '^0.1.0')
3636
register_noview = _quick_widget('jupyter-ros', '^0.1.0', False)
37-
sync_widget = {'sync': True, **widgets.widget_serialization}
37+
sync_widget = {'sync': True}
38+
sync_widget.update(widgets.widget_serialization)
3839

3940
@register_noview
4041
class ROSConnection(widgets.Widget):

0 commit comments

Comments
 (0)