You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently, I have to force it to str() like below:
for _, row in df.iterrows():
edges.append(Edge(source=row['up_node_id'], target=row['down_node_id'], id=row['edge_id'], label=str(row['edge_id'])))
The text was updated successfully, but these errors were encountered:
currently, I have to force it to str() like below:
for _, row in df.iterrows():
edges.append(Edge(source=row['up_node_id'], target=row['down_node_id'], id=row['edge_id'], label=str(row['edge_id'])))
The text was updated successfully, but these errors were encountered: