GuglielmoTor commited on
Commit
cb4dce3
·
verified ·
1 Parent(s): b8b7e00

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -64,7 +64,10 @@ def guarded_fetch_analytics():
64
  return count_md, plot
65
 
66
  def run_mentions_and_load():
67
- html, fig = generate_mentions_dashboard(comm_client_id, comm_token_dict)
 
 
 
68
  return html, fig
69
 
70
 
 
64
  return count_md, plot
65
 
66
  def run_mentions_and_load():
67
+ html, fig = generate_mentions_dashboard(
68
+ token_received["client_id"],
69
+ token_received["token"]
70
+ )
71
  return html, fig
72
 
73