Karim shoair commited on
Commit ·
9ffc9dd
1
Parent(s): 028ed17
fix(shell): Fix a small typo
Browse files- scrapling/core/shell.py +1 -1
scrapling/core/shell.py
CHANGED
|
@@ -297,7 +297,7 @@ class CurlParser:
|
|
| 297 |
_ = request_args.pop("json", None)
|
| 298 |
|
| 299 |
try:
|
| 300 |
-
return getattr(self.
|
| 301 |
except Exception as e: # pragma: no cover
|
| 302 |
log.error(f"Error calling Fetcher.{method}: {e}")
|
| 303 |
return None
|
|
|
|
| 297 |
_ = request_args.pop("json", None)
|
| 298 |
|
| 299 |
try:
|
| 300 |
+
return getattr(self.__fetcher, method)(**request_args)
|
| 301 |
except Exception as e: # pragma: no cover
|
| 302 |
log.error(f"Error calling Fetcher.{method}: {e}")
|
| 303 |
return None
|