diff --git a/odc/geo/_interop.py b/odc/geo/_interop.py index 220ee80..e7c61d4 100644 --- a/odc/geo/_interop.py +++ b/odc/geo/_interop.py @@ -75,6 +75,10 @@ def is_dask_collection(_: Any) -> bool: return False return is_dask_collection + if name == "__path__": + loader = globals().get("__loader__") + if loader is not None: + return loader.path raise AttributeError(f"module {__name__} has no attribute {name}")