From 352b9ca18f27fd1d1969f22d859d75679ace80f3 Mon Sep 17 00:00:00 2001 From: Anas Khan <83116240+anxkhn@users.noreply.github.com> Date: Sat, 4 Jul 2026 16:55:44 +0530 Subject: [PATCH] docs: drop stale client_class arg from SqlClientMixin._safely_open docstring The `_safely_open` Args block documented a `client_class` parameter that is not part of the method signature. Remove the stale line so the documented arguments match the actual signature (id, name, alias, storage_client, metadata_model, extra_metadata_fields), consistent with the sibling `_open` method's docstring. --- src/crawlee/storage_clients/_sql/_client_mixin.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/crawlee/storage_clients/_sql/_client_mixin.py b/src/crawlee/storage_clients/_sql/_client_mixin.py index fe7d2f0061..b719a16f4e 100644 --- a/src/crawlee/storage_clients/_sql/_client_mixin.py +++ b/src/crawlee/storage_clients/_sql/_client_mixin.py @@ -152,7 +152,6 @@ async def _safely_open( name: The name of the storage for named (global scope) storages. alias: The alias of the storage for unnamed (run scope) storages. storage_client: SQL storage client instance. - client_class: Concrete client class to instantiate. metadata_model: Pydantic model for metadata validation. extra_metadata_fields: Storage-specific metadata fields. """