Change debug mode to be off by default

This commit is contained in:
Karim shoair
2024-11-16 21:11:58 +02:00
parent 422c135aae
commit b60ac7f56a
+1 -1
View File
@@ -30,7 +30,7 @@ class Response(Adaptor):
class BaseFetcher: class BaseFetcher:
def __init__( def __init__(
self, huge_tree: bool = True, keep_comments: Optional[bool] = False, auto_match: Optional[bool] = True, self, huge_tree: bool = True, keep_comments: Optional[bool] = False, auto_match: Optional[bool] = True,
storage: Any = SQLiteStorageSystem, storage_args: Optional[Dict] = None, debug: Optional[bool] = True, storage: Any = SQLiteStorageSystem, storage_args: Optional[Dict] = None, debug: Optional[bool] = False,
automatch_domain: Optional[str] = None, automatch_domain: Optional[str] = None,
): ):
"""Arguments below are the same from the Adaptor class so you can pass them directly, the rest of Adaptor's arguments """Arguments below are the same from the Adaptor class so you can pass them directly, the rest of Adaptor's arguments