fix(shell): Fix a small typo

This commit is contained in:
Karim shoair
2025-09-14 05:05:55 +03:00
parent f604485a09
commit 0b3509a295
+1 -1
View File
@@ -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