Skip to content

Commit 74ab0bd

Browse files
committed
Make input parameter optional
1 parent b8d8fe1 commit 74ab0bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

urlpattern.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class URLPattern:
1717
) -> None: ...
1818
@overload
1919
def __init__(
20-
self, input: URLPatternInput, options: Optional[URLPatternOptions] = None
20+
self, input: URLPatternInput = {}, options: Optional[URLPatternOptions] = None
2121
) -> None: ...
2222
def test(
2323
self, input: URLPatternInput = {}, baseURL: Optional[str] = None

0 commit comments

Comments
 (0)