mirror of https://github.com/scrapy/scrapy.git
Reformat the new changes with new black.
This commit is contained in:
parent
706eb8d427
commit
032e6a091a
|
|
@ -53,12 +53,10 @@ class JsonRequest(Request):
|
|||
@overload
|
||||
def replace(
|
||||
self, *args: Any, cls: Type[RequestTypeVar], **kwargs: Any
|
||||
) -> RequestTypeVar:
|
||||
...
|
||||
) -> RequestTypeVar: ...
|
||||
|
||||
@overload
|
||||
def replace(self, *args: Any, cls: None = None, **kwargs: Any) -> Self:
|
||||
...
|
||||
def replace(self, *args: Any, cls: None = None, **kwargs: Any) -> Self: ...
|
||||
|
||||
def replace(
|
||||
self, *args: Any, cls: Optional[Type[Request]] = None, **kwargs: Any
|
||||
|
|
|
|||
Loading…
Reference in New Issue