From 004c2aad2854813038f6b49f0b13295fa55aa390 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Thu, 3 Feb 2022 17:03:17 -0600 Subject: [PATCH] Add missing types to exceptions stub (cherry picked from commit 91838d2d488911972ddaf69aa0c507457ce4b03a) --- dns/exception.pyi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dns/exception.pyi b/dns/exception.pyi index b29bfbea..dc571264 100644 --- a/dns/exception.pyi +++ b/dns/exception.pyi @@ -8,3 +8,5 @@ class DNSException(Exception): class SyntaxError(DNSException): ... class FormError(DNSException): ... class Timeout(DNSException): ... +class TooBig(DNSException): ... +class UnexpectedEnd(SyntaxError): ... -- 2.47.3