Skip to content

Commit

Permalink
have make_recipe drop duplicate rows before returning
Browse files Browse the repository at this point in the history
  • Loading branch information
abigailsnyder committed Sep 6, 2024
1 parent cb8d6ca commit 0ea2938
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions stitches/fx_recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -1211,4 +1211,6 @@ def make_recipe(
.reset_index(drop=True)
.copy()
)

out = out.drop_duplicates().reset_index(drop=True).copy()
return out

0 comments on commit 0ea2938

Please sign in to comment.