Skip to content

Commit 9bd3491

Browse files
authored
Update stdlib/configparser.pyi
1 parent 32fab3a commit 9bd3491

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/configparser.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ class RawConfigParser(_Parser):
146146
def get(self, section: str, option: str, *, raw: bool = ..., vars: _Section | None = ...) -> str | None: ...
147147
@overload
148148
def get(
149-
self, section: str, option: str, *, raw: bool = ..., vars: _Section | None = ..., fallback: _T
149+
self, section: str, option: str, *, raw: bool = ..., vars: _Section | None = ..., fallback: _T | None
150150
) -> str | _T | None: ...
151151
@overload
152152
def items(self, *, raw: bool = ..., vars: _Section | None = ...) -> ItemsView[str, SectionProxy]: ...

0 commit comments

Comments
 (0)