1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-05 21:02:20 +01:00

Add new Error type to skip prepending path (#6716)

This commit is contained in:
Jesse Hills
2024-05-10 10:57:47 +12:00
committed by GitHub
parent 026c3a69b8
commit 8280772b91
2 changed files with 6 additions and 0 deletions

View File

@@ -267,6 +267,10 @@ class Required(vol.Required):
super().__init__(key, msg=msg)
class FinalExternalInvalid(Invalid):
"""Represents an invalid value in the final validation phase where the path should not be prepended."""
def check_not_templatable(value):
if isinstance(value, Lambda):
raise Invalid("This option is not templatable!")