From 530245733cb40b85b05b890b7c3e60767e38893d Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Mon, 7 Feb 2022 20:47:56 +0100 Subject: [PATCH] FIX: Fixed defusedxml module mock definition in docs/conf.py --- docs/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index dcc54e5b..a3f641d2 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -52,7 +52,6 @@ extensions = [ 'sphinx.ext.githubpages', 'sphinx_rtd_theme', 'sphinx_marshmallow', - 'defusedxml', ] # Add any paths that contain templates here, relative to this directory. @@ -291,6 +290,7 @@ autodoc_mock_imports = ['googlesamples.assistant.grpc.audio_helpers', 'irc.client', 'irc.connection', 'irc.events', + 'defusedxml', ] sys.path.insert(0, os.path.abspath('../..'))