Skip to content

Commit

Permalink
Fix the type of apidoc_excluded_paths in conf.py (#1697)
Browse files Browse the repository at this point in the history
  • Loading branch information
webknjaz committed Aug 11, 2021
1 parent 51e8b17 commit 5452778
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import os
import sys
from pathlib import Path
from typing import List

import pkg_resources

Expand Down Expand Up @@ -85,7 +86,7 @@
# The master toctree document.
master_doc = 'index'

apidoc_excluded_paths = []
apidoc_excluded_paths: List[str] = []
apidoc_extra_args = [
'--implicit-namespaces',
'--private', # include “_private” modules
Expand Down

0 comments on commit 5452778

Please sign in to comment.