Skip to content

Commit

Permalink
Fix: ref target not found WARNING sphinx-doc#4609
Browse files Browse the repository at this point in the history
Signed-off-by: Nikhil Dhandre <[email protected]>
  • Loading branch information
digitronik authored and omaciel committed Feb 20, 2019
1 parent d3f1117 commit 648ec99
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,12 @@
# A list of (type, target) tuples (by default empty) that should be ignored
# when generating warnings in “nitpicky mode”.
nitpick_ignore = [
('py:obj', 'bool'),
('py:obj', 'dict'),
('py:obj', 'int'),
('py:obj', 'list'),
('py:obj', 'str'),
('py:obj', 'tuple'),
('py:class', 'bool'),
('py:class', 'dict'),
('py:class', 'int'),
('py:class', 'list'),
('py:class', 'str'),
('py:class', 'tuple'),
]


Expand Down

0 comments on commit 648ec99

Please sign in to comment.