Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions python-scripts/docspec-gen/generate_ast.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from pydoc_markdown.interfaces import Context
from pydoc_markdown.contrib.loaders.python import PythonLoader
from pydoc_markdown.contrib.processors.filter import FilterProcessor
from pydoc_markdown.contrib.processors.crossref import CrossrefProcessor
from google_docstring_processor import ApifyGoogleProcessor
from docspec import dump_module

Expand Down Expand Up @@ -43,15 +42,13 @@ def main():
documented_only=False,
skip_empty_modules=False,
)
crossref = CrossrefProcessor()
google = ApifyGoogleProcessor()

loader.init(context)
filter.init(context)
google.init(context)
crossref.init(context)

processors = [filter, google, crossref]
processors = [filter, google]

dump = []

Expand Down
Loading