(self, *a: Any, **kw: Any)
| 109 | """To indicate a command-line usage error""" |
| 110 | |
| 111 | def __init__(self, *a: Any, **kw: Any): |
| 112 | self.print_help = kw.pop("print_help", True) |
| 113 | super().__init__(*a, **kw) |
| 114 | |
| 115 | |
| 116 | class ScrapyDeprecationWarning(Warning): |