Skip to content

Commit

Permalink
fixed error in appending groundwater entries to aggregated_groundwate…
Browse files Browse the repository at this point in the history
…r_entries
  • Loading branch information
lhaibach committed Dec 10, 2024
1 parent be4d063 commit b659a85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stratigraphy/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def start_pipeline(
##avoid duplicate entries
for groundwater_entry in groundwater_entries_near_bbox:
if groundwater_entry not in aggregated_groundwater_entries:
aggregated_groundwater_entries.extend(groundwater_entries_near_bbox)
aggregated_groundwater_entries.append(groundwater_entry)

# TODO: Add remove duplicates here!
if page_index > 0:
Expand Down

0 comments on commit b659a85

Please sign in to comment.