Skip to content

Commit afc4ea4

Browse files
authored
fix: custom_templates config was dropped in previous commit (#630)
1 parent b61d4d1 commit afc4ea4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/mkdocstrings/plugin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ class PluginConfig(Config):
8888

8989
default_handler = opt.Type(str, default="python")
9090
"""The default handler to use. The value is the name of the handler module. Default is "python"."""
91-
custom_templates = opt.Optional(opt.Dir(exists=True)),
91+
custom_templates = opt.Optional(opt.Dir(exists=True))
9292
"""Location of custom templates to use when rendering API objects.
93-
93+
9494
Value should be the path of a directory relative to the MkDocs configuration file.
9595
"""
9696
enable_inventory = opt.Optional(opt.Type(bool))

0 commit comments

Comments
 (0)