Skip to content

Commit

Permalink
Bump fyta_cli to 0.6.3 (home-assistant#124574)
Browse files Browse the repository at this point in the history
  • Loading branch information
dontinelli authored Aug 25, 2024
1 parent 36bfd7b commit 1eeb3bd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion homeassistant/components/fyta/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"integration_type": "hub",
"iot_class": "cloud_polling",
"quality_scale": "platinum",
"requirements": ["fyta_cli==0.6.0"]
"requirements": ["fyta_cli==0.6.3"]
}
2 changes: 1 addition & 1 deletion homeassistant/components/fyta/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ async def async_setup_entry(
FytaPlantSensor(coordinator, entry, sensor, plant_id)
for plant_id in coordinator.fyta.plant_list
for sensor in SENSORS
if sensor.key in dir(coordinator.data[plant_id])
if sensor.key in dir(coordinator.data.get(plant_id))
]

async_add_entities(plant_entities)
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -924,7 +924,7 @@ freesms==0.2.0
fritzconnection[qr]==1.13.2

# homeassistant.components.fyta
fyta_cli==0.6.0
fyta_cli==0.6.3

# homeassistant.components.google_translate
gTTS==2.2.4
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,7 @@ freebox-api==1.1.0
fritzconnection[qr]==1.13.2

# homeassistant.components.fyta
fyta_cli==0.6.0
fyta_cli==0.6.3

# homeassistant.components.google_translate
gTTS==2.2.4
Expand Down

0 comments on commit 1eeb3bd

Please sign in to comment.