Skip to content

Commit

Permalink
fix code smell
Browse files Browse the repository at this point in the history
  • Loading branch information
hboisgon committed Nov 21, 2023
1 parent 09fd33a commit 0666ce7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hydromt_delft3dfm/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def read_branches_gui(

# Merge the two df based on branchid
df_gui = df_gui.drop_duplicates(subset="branchid")
gdf_out = gdf.merge(df_gui, on="branchid", how="left")
gdf_out = gdf.merge(df_gui, on="branchid", how="left", validate=None)

return gdf_out

Expand Down

0 comments on commit 0666ce7

Please sign in to comment.