Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgleith committed Jan 4, 2024
1 parent 04ece54 commit e2ecdce
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dep_tools/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ def run(self):
if self.processor.send_area_to_processor:
processor_kwargs["area"] = self.area
output_data = self.processor.process(input_data, **processor_kwargs)
self.logger.info(f"Processed data will have a result of shape: {[output_data.dims[d] for d in ['x', 'y']]}")
self.logger.info(
f"Processed data will have a result of shape: {[output_data.dims[d] for d in ['x', 'y']]}"
)

self.logger.info("Processing and writing data...")
paths = self.writer.write(output_data, self.id)
Expand Down

1 comment on commit e2ecdce

@jessjaco
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like this logging! Most times bad stac searches come through as huge arrays

Please sign in to comment.