Spaces:
Running
Running
Update mentions_dashboard.py
Browse files- mentions_dashboard.py +3 -0
mentions_dashboard.py
CHANGED
@@ -68,6 +68,9 @@ def generate_mentions_dashboard(comm_client_id, comm_token_dict):
|
|
68 |
mention_shares = [e.get("generatedActivity") for e in all_notifications if e.get("action") == "SHARE_MENTION"]
|
69 |
mention_data = []
|
70 |
|
|
|
|
|
|
|
71 |
for share_urn in mention_shares:
|
72 |
if not share_urn:
|
73 |
continue
|
|
|
68 |
mention_shares = [e.get("generatedActivity") for e in all_notifications if e.get("action") == "SHARE_MENTION"]
|
69 |
mention_data = []
|
70 |
|
71 |
+
print(f"Found {len(mention_shares)} SHARE_MENTION activities")
|
72 |
+
|
73 |
+
|
74 |
for share_urn in mention_shares:
|
75 |
if not share_urn:
|
76 |
continue
|