Skip to content

Commit c053860

Browse files
Change default to instead of
1 parent f849a98 commit c053860

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mkdocstrings_handlers/python_xref/handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def __init__(self, config: PythonConfig, base_dir: Path, **kwargs: Any) -> None:
6565
base_dir: The base directory of the project.
6666
**kwargs: Arguments passed to the parent constructor.
6767
"""
68-
self.check_crossrefs = config.options.pop('check_crossrefs', None)
68+
self.check_crossrefs = config.options.pop('check_crossrefs', True)
6969
exclude = config.options.pop('check_crossrefs_exclude', [])
7070
self.check_crossrefs_exclude = [re.compile(p) for p in exclude]
7171
super().__init__(config, base_dir, **kwargs)

0 commit comments

Comments
 (0)