diff --git a/third_party/2and3/pymysql/err.pyi b/third_party/2and3/pymysql/err.pyi index 14993cbf2..1ef626361 100644 --- a/third_party/2and3/pymysql/err.pyi +++ b/third_party/2and3/pymysql/err.pyi @@ -1,9 +1,10 @@ +import builtins from typing import Dict, NoReturn, Type from .constants import ER as ER class MySQLError(Exception): ... -class Warning(MySQLError): ... +class Warning(builtins.Warning, MySQLError): ... class Error(MySQLError): ... class InterfaceError(Error): ... class DatabaseError(Error): ...