Skip to content

Commit dfbcd4e

Browse files
committed
updates tests
1 parent 374df61 commit dfbcd4e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ And then running the following e.g.:
4747

4848
``` python
4949
import uros
50-
from std_msgs._ColorRGBA import ColorRGBA #message object ColorRGBA
50+
from std_msgs import ColorRGBA #message object ColorRGBA
5151
from time import sleep
5252
node=uros.NodeHandle(2,115200) #node initialized, for tx2/rx2 and 115200 baudrate
5353
msg=ColorRGBA() #msg object init
@@ -64,7 +64,7 @@ while True:
6464

6565
```python
6666
import uros
67-
from std_msgs._String import String
67+
from std_msgs import String
6868

6969
def cb(msg):
7070
print(msg.data)
@@ -77,7 +77,7 @@ node.subscribe('chatter', String, cb)
7777

7878
```python
7979
import uros
80-
from std_msgs._String import String
80+
from std_msgs import String
8181

8282
def cb(msg):
8383
print(msg.data)

0 commit comments

Comments
 (0)