mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
Fix signature of ConfigParser's dict_type argument (#2684)
This commit is contained in:
committed by
Sebastian Rittau
parent
1b24d80087
commit
2469a3ccda
@@ -136,7 +136,7 @@ class RawConfigParser(_parser):
|
||||
class ConfigParser(RawConfigParser):
|
||||
def __init__(self,
|
||||
defaults: Optional[_section] = ...,
|
||||
dict_type: Mapping[str, str] = ...,
|
||||
dict_type: Type[Mapping[str, str]] = ...,
|
||||
allow_no_value: bool = ...,
|
||||
delimiters: Sequence[str] = ...,
|
||||
comment_prefixes: Sequence[str] = ...,
|
||||
|
||||
Reference in New Issue
Block a user