13 lines
276 B
Python
13 lines
276 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
class UserInfo:
|
||
|
|
||
|
def __init__(self):
|
||
|
self.selected_robot_id = None
|
||
|
self.robots_id_list = []
|
||
|
|
||
|
def select_robot(self,robot_id):
|
||
|
self.selected_robot_id = robot_id
|
||
|
|
||
|
def update_robots_list(self,robots_id_list):
|
||
|
self.robots_id_list = robots_id_list
|