We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12aad0e commit 2441eb0Copy full SHA for 2441eb0
1 file changed
urlpattern.pyi
@@ -4,12 +4,12 @@ URLPatternInput: TypeAlias = str | URLPatternInit
4
5
class URLPattern:
6
@overload
7
- def __init__(input: URLPatternInput, baseURL: str): ...
+ def __init__(self, input: URLPatternInput, baseURL: str): ...
8
9
- def __init__(input: URLPatternInput = {}): ...
10
- def test(input: URLPatternInput = {}, baseURL: str | None = None) -> bool: ...
+ def __init__(self, input: URLPatternInput = {}): ...
+ def test(self, input: URLPatternInput = {}, baseURL: str | None = None) -> bool: ...
11
def exec(
12
- input: URLPatternInput = {}, baseURL: str | None = None
+ self, input: URLPatternInput = {}, baseURL: str | None = None
13
) -> URLPatternResult | None: ...
14
@property
15
def protocol(self) -> str: ...
0 commit comments