gursi26 commited on
Commit
4be4378
1 Parent(s): bc64924
Files changed (1) hide show
  1. app.py +5 -7
app.py CHANGED
@@ -3,12 +3,10 @@ import io, sys, time
3
  from utils import *
4
  from client import CobotController
5
 
6
- import uuid
7
 
8
- def create_cobot_client():
9
- user_id = get_user_id()
10
- user, passwd, host, endpoint, port = get_credentials(False)
11
- client = CobotController(user, passwd, host, port, endpoint, user_id)
12
 
13
- render_log_window()
14
- client = create_cobot_client()
 
 
 
3
  from utils import *
4
  from client import CobotController
5
 
6
+ render_log_window()
7
 
 
 
 
 
8
 
9
+ user_id = get_user_id()
10
+ user, passwd, host, endpoint, port = get_credentials(False)
11
+ client = CobotController(user, passwd, host, port, endpoint, user_id)
12
+