MCPcopy Create free account
hub / github.com/copier-org/copier / InvalidConfigFileError

Class InvalidConfigFileError

copier/errors.py:77–83  ·  view source on GitHub ↗

Indicates that the config file is wrong.

Source from the content-addressed store, hash-verified

75
76
77class InvalidConfigFileError(ConfigFileError):
78 """Indicates that the config file is wrong."""
79
80 def __init__(self, conf_path: Path, quiet: bool):
81 msg = str(conf_path)
82 printf_exception(self, "INVALID CONFIG FILE", msg=msg, quiet=quiet)
83 super().__init__(msg)
84
85
86class MultipleConfigFilesError(ConfigFileError):

Callers 1

load_template_configFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected