"include" documentation error

The docs say:

include
A space-separated list of extra configuration files to include. Filenames are relative to the directory containing config.yaml .

But if you write, for example:

include: paths.yaml

You get an error:

configuration error: include must be a dictionary or a list, not str

Instead, you must use a yaml list:

include:
- paths.yaml

This works.

Indeed; that’s just totally wrong! Thanks for pointing that out. If you have a moment sometime, we’d be grateful for a pull request to fix the docs. :smiley: