Skip to content

Commit fd08e21

Browse files
committed
MAINT: adding workaround for astropy type hints so sphinx doesn't choke on them here
1 parent 660eb7d commit fd08e21

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/conf.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,9 @@ def __getattr__(cls, name):
197197
edit_on_github_doc_root = "docs"
198198

199199
nitpicky = True
200-
nitpick_ignore = [('py:class', 'astroquery.mast.core.MastQueryWithLogin')]
200+
nitpick_ignore = [('py:class', 'astroquery.mast.core.MastQueryWithLogin'),
201+
# astropy interited type annotations
202+
('py:class', 'ConfigItem')]
201203

202204

203205
# -- Linkcheck builder options ----------------------------------------------

0 commit comments

Comments
 (0)