Skip to content

Class peagen.errors.TemplateSearchPathError

peagen.errors.TemplateSearchPathError

TemplateSearchPathError()

Bases: RuntimeError

Raise when no valid template directories can be found.

Source code in peagen/errors.py
68
69
70
71
def __init__(self) -> None:
    super().__init__(
        "No valid template directories found — check plugin installation and .peagen.toml",
    )