We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcc1699 commit d1cb597Copy full SHA for d1cb597
parcels/particleset.py
@@ -535,7 +535,11 @@ def execute(
535
536
# Set up pbar
537
if output_file:
538
- logger.info(f"Output files are stored in {output_file.store.path}")
+ if hasattr(output_file.store, "path"):
539
+ zarr_path = output_file.store.path
540
+ else:
541
+ zarr_path = output_file.store
542
+ logger.info(f"Output files are stored in {zarr_path}")
543
544
if verbose_progress:
545
pbar = tqdm(total=(end_time - start_time) / np.timedelta64(1, "s"), file=sys.stdout)
0 commit comments