Skip to content

Commit

Permalink
fix: only remove copy instead of original and copy (#2664)
Browse files Browse the repository at this point in the history
  • Loading branch information
P3rceval authored Oct 18, 2024
1 parent 83c9deb commit 5e6ac7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notebooks/src/temporal_overlap_anomalycheck.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
"\n",
" table = metadata.tables['carpool_v2.status']\n",
" \n",
" where_clause = table.c.carpool_id.in_(df_final_result['_id'].to_list())\n",
" where_clause = table.c.carpool_id.in_(df_labels['_id'].to_list())\n",
"\n",
" update_stmt = sa.update(table).where(where_clause).values(anomaly_status='failed')\n",
"\n",
Expand Down

0 comments on commit 5e6ac7d

Please sign in to comment.