tykiww commited on
Commit
32beee3
1 Parent(s): 57298a6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -45,7 +45,7 @@ def drop_namespace():
45
  print("Function executed after delay!")
46
 
47
  def generate_key():
48
- unique_key = uuid.uuid1()
49
  unique_key = 'User_' + unique_key
50
  timer = threading.Timer(10, drop_namespace)
51
  timer.start()
 
45
  print("Function executed after delay!")
46
 
47
  def generate_key():
48
+ unique_key = str(uuid.uuid1())
49
  unique_key = 'User_' + unique_key
50
  timer = threading.Timer(10, drop_namespace)
51
  timer.start()