summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2023-03-15 15:04:48 -0400
committerJulian Berman <Julian@GrayVines.com>2023-03-15 15:04:57 -0400
commit33949738509c3caba84b61c3e34e4c96efb8e2db (patch)
treedc35b9f7034621be84f92e81c80c7b07cd824653
parentfe9c6b04edfb0b8837bd76be3c681e2ed05b3fba (diff)
downloadjsonschema-33949738509c3caba84b61c3e34e4c96efb8e2db.tar.gz
We were relying on an import * for doctests.
(Of course mostly for laziness -- but this now doesn't import the exceptions module which doesn't appear in __all__, which was added for E401 style lints, which...)
-rw-r--r--docs/conf.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 925c476..19d734f 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -76,6 +76,7 @@ def setup(app):
doctest_global_setup = """
from jsonschema import *
+from jsonschema import exceptions
import jsonschema.validators
"""