[configparser] Fix missing fallback argument in SectionProxy.get (#13559)

Closes: #13556
This commit is contained in:
Sebastian Rittau
2025-02-28 03:33:10 -08:00
committed by GitHub
parent 1bd2a358c9
commit f1b121cf29
2 changed files with 14 additions and 2 deletions
@@ -0,0 +1,5 @@
from configparser import RawConfigParser, SectionProxy
from typing_extensions import assert_type
sp = SectionProxy(RawConfigParser(), "")
assert_type(sp.get("foo", fallback="hi"), str)