Skip to content

Commit

Permalink
correct max in for loop
Browse files Browse the repository at this point in the history
  • Loading branch information
eveleighoj committed Jan 15, 2025
1 parent 25f7618 commit 1b8f7a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion digital_land/package/dataset_parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ def load_entities(self, transformed_parquet_dir, resource_path, organisation_pat
/ f"dataset={self.dataset}"
/ f"entity_{file_count}.parquet"
)
entity_range = [_, entity_limit]
entity_range = [_, _ + entity_limit]
logger.info(
f"loading entities from {entity_range[0]} to {entity_range[1]}"
)
Expand Down

0 comments on commit 1b8f7a4

Please sign in to comment.