refactor: make auto_match disabled by default
This commit is contained in:
@@ -107,7 +107,7 @@ class Response(Adaptor):
|
||||
class BaseFetcher:
|
||||
__slots__ = ()
|
||||
huge_tree: bool = True
|
||||
auto_match: Optional[bool] = True
|
||||
auto_match: Optional[bool] = False
|
||||
storage: Any = SQLiteStorageSystem
|
||||
keep_cdata: Optional[bool] = False
|
||||
storage_args: Optional[Dict] = None
|
||||
|
||||
+1
-1
@@ -39,7 +39,7 @@ class Adaptor(SelectorsGeneration):
|
||||
root: Optional[html.HtmlElement] = None,
|
||||
keep_comments: Optional[bool] = False,
|
||||
keep_cdata: Optional[bool] = False,
|
||||
auto_match: Optional[bool] = True,
|
||||
auto_match: Optional[bool] = False,
|
||||
storage: Any = SQLiteStorageSystem,
|
||||
storage_args: Optional[Dict] = None,
|
||||
**kwargs
|
||||
|
||||
Reference in New Issue
Block a user