1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: Remove intersphinx config option
The intersphinx config option should be a dict[str, tuple[]. It is improperly
set here to be a dict[str, None]. That being said, since we block internet
access anyway, there's no point in fixing this; just remove it.
Author: Harlan Lieberman-Berg <hlieberman@debian.org>
Last-Update: 2026-03-29
Forwarded: not-needed
Index: python-digitalocean/docs/conf.py
===================================================================
--- python-digitalocean.orig/docs/conf.py
+++ python-digitalocean/docs/conf.py
@@ -180,7 +180,3 @@ epub_copyright = copyright
# A list of files that should not be packed into the epub file.
epub_exclude_files = ['search.html']
-
-
-# Example configuration for intersphinx: refer to the Python standard library.
-intersphinx_mapping = {'https://docs.python.org/': None}
|