From 279156530e8b88e5fbc27c58da034b441511dc6c Mon Sep 17 00:00:00 2001 From: Justin DuJardin Date: Wed, 16 Nov 2022 12:12:33 -0800 Subject: [PATCH] fix(azure): "azure" scheme was not registered (#94) --- pathy/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pathy/__init__.py b/pathy/__init__.py index f42a758..1a9473d 100644 --- a/pathy/__init__.py +++ b/pathy/__init__.py @@ -1113,6 +1113,7 @@ def scandir(self) -> Generator[BucketEntry, None, None]: _optional_clients: Dict[str, str] = { "gs": "pathy.gcs", "s3": "pathy.s3", + "azure": "pathy.azure", } BucketClientType = TypeVar("BucketClientType", bound=BucketClient)