9 lines
143 B
Python
9 lines
143 B
Python
#!/usr/bin/env python
|
|
|
|
|
|
|
|
class RobotInfo:
|
|
|
|
def __init__(self,robot_id):
|
|
self.robot_id = robot_id
|
|
raise(NotImplementedError) |