From 0b3509a295997c2361df77dd3a6142ae7f4d9b50 Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Sun, 14 Sep 2025 05:05:55 +0300 Subject: [PATCH] fix(shell): Fix a small typo --- scrapling/core/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapling/core/shell.py b/scrapling/core/shell.py index 2b23b2b..82f9b7e 100644 --- a/scrapling/core/shell.py +++ b/scrapling/core/shell.py @@ -297,7 +297,7 @@ class CurlParser: _ = request_args.pop("json", None) try: - return getattr(self.__Fetcher, method)(**request_args) + return getattr(self.__fetcher, method)(**request_args) except Exception as e: # pragma: no cover log.error(f"Error calling Fetcher.{method}: {e}") return None