File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ URLPatternInput: TypeAlias = str | URLPatternInit
4
4
5
5
class URLPattern :
6
6
@overload
7
- def __init__ (input : URLPatternInput , baseURL : str ): ...
7
+ def __init__ (self , input : URLPatternInput , baseURL : str ): ...
8
8
@overload
9
- def __init__ (input : URLPatternInput = {}): ...
10
- def test (input : URLPatternInput = {}, baseURL : str | None = None ) -> bool : ...
9
+ def __init__ (self , input : URLPatternInput = {}): ...
10
+ def test (self , input : URLPatternInput = {}, baseURL : str | None = None ) -> bool : ...
11
11
def exec (
12
- input : URLPatternInput = {}, baseURL : str | None = None
12
+ self , input : URLPatternInput = {}, baseURL : str | None = None
13
13
) -> URLPatternResult | None : ...
14
14
@property
15
15
def protocol (self ) -> str : ...
You can’t perform that action at this time.
0 commit comments