File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,8 @@ def _clip_process(
131
131
time .sleep (delay )
132
132
else :
133
133
logger .warning (
134
- f"There was an error writing the file :[Polygon ID: { polygon_id } \n Polygon: { polygon } \n Error message: { str (e )} ]"
134
+ f"There was an error writing the file :[Polygon ID: { polygon_id } "
135
+ f"\n Polygon: { polygon } \n Error message: { str (e )} ]"
135
136
)
136
137
return None
137
138
@@ -318,7 +319,8 @@ def merge_raster_bands(
318
319
# Iterate through each band of the raster file
319
320
for source_image_band_index in range (1 , num_of_bands + 1 ):
320
321
logger .info (
321
- f"Writing asset sub item band { source_image_band_index } to merged index band { merged_image_index } "
322
+ f"Writing asset sub item band { source_image_band_index } "
323
+ f"to merged index band { merged_image_index } "
322
324
)
323
325
# Write band to output merged_asset_image
324
326
merged_asset_image .write_band (merged_image_index , source_image .read (source_image_band_index ))
You can’t perform that action at this time.
0 commit comments