From fec82156312842a52ac5956e55891fa4ddbec4df Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Wed, 26 Mar 2025 05:56:49 +0200 Subject: [PATCH] docs: Clearer docs for recent changes --- scrapling/engines/toolbelt/custom.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scrapling/engines/toolbelt/custom.py b/scrapling/engines/toolbelt/custom.py index a5ec27a..90c6861 100644 --- a/scrapling/engines/toolbelt/custom.py +++ b/scrapling/engines/toolbelt/custom.py @@ -122,7 +122,7 @@ class BaseFetcher: if args_str: args_str += ', ' - log.warning(f'This logic is deprecated now and it will be removed with v0.3. Use `{self.__class__.__name__}.configure({args_str}{kwargs_str})` instead before fetching') + log.warning(f'This logic is deprecated now, and have no effect; It will be removed with v0.3. Use `{self.__class__.__name__}.configure({args_str}{kwargs_str})` instead before fetching') pass @classmethod @@ -139,7 +139,7 @@ class BaseFetcher: @classmethod def configure(cls, **kwargs): - """Setup multiple arguments for the parser at once + """Set multiple arguments for the parser at once globally :param kwargs: The keywords can be any arguments of the following: huge_tree, keep_comments, keep_cdata, auto_match, storage, storage_args, automatch_domain """