mirror of
https://github.com/esphome/esphome.git
synced 2026-09-27 15:00:24 +00:00
7 lines
278 B
Python
7 lines
278 B
Python
from tests.testing_helpers import ComponentManifestOverride
|
|
|
|
|
|
def override_manifest(manifest: ComponentManifestOverride) -> None:
|
|
# ClimateIR derives from climate::Climate without declaring it as a dependency.
|
|
manifest.dependencies = manifest.dependencies + ["climate"]
|