Skip to content

Commit 7090ff0

Browse files
committed
Details in storages
1 parent faa5974 commit 7090ff0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/crawlee/storages/_base_storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ async def open(
4343

4444
@abstractmethod
4545
async def drop(self) -> None:
46-
"""Drops the storage, removing it from the underlying storage client and clearing the cache."""
46+
"""Drop the storage, removing it from the underlying storage client and clearing the cache."""

src/crawlee/storages/_creation_management.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ def _get_default_storage_id(configuration: Configuration, storage_class: type[TR
121121
async def open_storage(
122122
*,
123123
storage_class: type[TResource],
124-
id: str | None = None,
125-
name: str | None = None,
124+
id: str | None,
125+
name: str | None,
126126
configuration: Configuration,
127127
storage_client: BaseStorageClient,
128128
) -> TResource:

0 commit comments

Comments
 (0)