Skip to content

Commit d84e3b7

Browse files
ignore error from undocumented Python class
1 parent 1f36d30 commit d84e3b7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/conf.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,12 @@
122122
)
123123
}
124124

125+
nitpick_ignore = [
126+
# This class appears in documented type-hints but is not documented in the
127+
# Python docs so fails build.
128+
('py:class', 're.Pattern')
129+
]
130+
125131
# List of patterns, relative to source directory, that match files and
126132
# directories to ignore when looking for source files.
127133
# exclude_patterns = ['_build']

0 commit comments

Comments
 (0)