Skip to content

Commit

Permalink
fix storage base class str method
Browse files Browse the repository at this point in the history
  • Loading branch information
cisaacstern committed Jul 4, 2023
1 parent f8328c4 commit 21797e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pangeo_forge_runner/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def __str__(self):
fsspec_args_filtered = ", ".join(
f"{k}=<{type(v).__name__}>" for k, v in self.fsspec_args.items()
)
return f'{self.pangeo_forge_target_class.__name__}({self.fsspec_class.__name__}({fsspec_args_filtered}, root_path="{self.root_path}")'
return f'{self.pangeo_forge_target_class}({self.fsspec_class.__name__}({fsspec_args_filtered}, root_path="{self.root_path}")'


class TargetStorage(StorageTargetConfig):
Expand Down

0 comments on commit 21797e1

Please sign in to comment.