From 1ebb8564048eff7d45e0f5009e4d2e53136ad805 Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Thu, 15 Aug 2019 15:30:57 +0200 Subject: [PATCH] Add missing PythonTooOldError to stubs --- src/attr/exceptions.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/src/attr/exceptions.pyi b/src/attr/exceptions.pyi index 8d6bd39b..736fde2e 100644 --- a/src/attr/exceptions.pyi +++ b/src/attr/exceptions.pyi @@ -7,6 +7,7 @@ class AttrsAttributeNotFoundError(ValueError): ... class NotAnAttrsClassError(ValueError): ... class DefaultAlreadySetError(RuntimeError): ... class UnannotatedAttributeError(RuntimeError): ... +class PythonTooOldError(RuntimeError): ... class NotCallableError(TypeError): msg: str = ...