Add missing default_section to RawConfigParser (#4505)

This commit is contained in:
Nils K
2020-08-31 14:55:30 +02:00
committed by GitHub
parent fdd01b0036
commit 802c8fbea4

View File

@@ -48,6 +48,7 @@ class LegacyInterpolation(Interpolation): ...
class RawConfigParser(_parser):
BOOLEAN_STATES: ClassVar[Mapping[str, bool]] = ... # Undocumented
default_section: str
def __init__(
self,
defaults: Optional[_section] = ...,