Add missing PythonTooOldError to stubs

This commit is contained in:
Hynek Schlawack 2019-08-15 15:30:57 +02:00
parent cf9de77409
commit 1ebb856404
1 changed files with 1 additions and 0 deletions

View File

@ -7,6 +7,7 @@ class AttrsAttributeNotFoundError(ValueError): ...
class NotAnAttrsClassError(ValueError): ...
class DefaultAlreadySetError(RuntimeError): ...
class UnannotatedAttributeError(RuntimeError): ...
class PythonTooOldError(RuntimeError): ...
class NotCallableError(TypeError):
msg: str = ...