From b6bd58268bd950cacfece7252582423f19419563 Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Sun, 18 Feb 2018 22:33:09 +0530 Subject: [PATCH] Update base class to match the source file (#1899) --- stdlib/3/configparser.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/3/configparser.pyi b/stdlib/3/configparser.pyi index 56598624a..684eea510 100644 --- a/stdlib/3/configparser.pyi +++ b/stdlib/3/configparser.pyi @@ -225,7 +225,7 @@ class InterpolationSyntaxError(InterpolationError): pass -class ParsingError: +class ParsingError(Error): source = ... # type: str errors = ... # type: Sequence[Tuple[int, str]]