Skip to content

Commit e4f6c05

Browse files
Add missing default value
1 parent f18c332 commit e4f6c05

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
@@ -42,7 +42,7 @@ class URLPattern:
4242
def __init__(self, input: str, options: None) -> None: ...
4343
@overload
4444
def __init__(
45-
self, input: URLPatternInit, options: URLPatternOptions = {}
45+
self, input: URLPatternInit = {}, options: URLPatternOptions = {}
4646
) -> None: ...
4747
@overload
4848
def __init__(self, input: URLPatternInit, options: None) -> None: ...

0 commit comments

Comments
 (0)