ssb-sgis 1.3.0__py3-none-any.whl → 1.3.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -623,7 +623,7 @@ def _write_partitioned_geoparquet(
623
623
  if basename_template is None:
624
624
  this_basename = (uuid.uuid4().hex + "-{i}.parquet").replace("-{i}", "0")
625
625
  else:
626
- this_basename = basename_template
626
+ this_basename = basename_template.replace("-{i}", "0")
627
627
  for i, sibling_path in enumerate(sorted(glob_func(str(Path(path) / "**")))):
628
628
  if paths_are_equal(sibling_path, path):
629
629
  continue