Skip to content

Commit

Permalink
Fix return
Browse files Browse the repository at this point in the history
  • Loading branch information
tgrandje committed Sep 30, 2024
1 parent f4d381d commit 1f0c38b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cartiflette/pipeline/mapshaper_split_from_s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,9 @@ def mapshaperize_split_from_s3(
logger.error(msg)

return {
"success": len(success),
"skipped": len(skipped),
"failed": len(failed),
"success": success,
"skipped": skipped,
"failed": failed,
}


Expand Down

0 comments on commit 1f0c38b

Please sign in to comment.