fix comments

This commit is contained in:
Tomasz Duda 2024-10-28 20:53:26 +01:00
parent 11a0f706a1
commit 555cfe52c5

View file

@ -193,7 +193,7 @@ def _is_target_platform(name):
try: try:
from esphome.loader import get_component from esphome.loader import get_component
# we cannot load some components without platform # some components cannot be loaded without platform
component = get_component(name, True) component = get_component(name, True)
if component.is_target_platform: if component.is_target_platform:
return True return True
@ -204,7 +204,6 @@ def _is_target_platform(name):
def _supported_target_platforms(): def _supported_target_platforms():
target_platforms = [] target_platforms = []
# The root directory of the repo
root = Path(__file__).parent.parent root = Path(__file__).parent.parent
components_dir = root / "components" components_dir = root / "components"