File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,10 +22,7 @@ async def async_setup_entry(hass, config_entry):
2222 )
2323 config_entry .add_update_listener (update_listener )
2424 # Add sensor
25- hass .async_create_background_task (
26- hass .config_entries .async_forward_entry_setup (config_entry , PLATFORM ),
27- name = DOMAIN
28- )
25+ await hass .config_entries .async_forward_entry_setup (config_entry , PLATFORM )
2926 return True
3027
3128
@@ -44,7 +41,4 @@ async def update_listener(hass, entry):
4441 """Update listener."""
4542 entry .data = entry .options
4643 await hass .config_entries .async_forward_entry_unload (entry , PLATFORM )
47- hass .async_create_background_task (
48- hass .config_entries .async_forward_entry_setup (entry , PLATFORM ),
49- name = DOMAIN
50- )
44+ await hass .config_entries .async_forward_entry_setups (entry , PLATFORM )
Original file line number Diff line number Diff line change 33 "name" : " ics" ,
44 "documentation" : " https://github.com/KoljaWindeler/ics/blob/master/README.md" ,
55 "config_flow" : true ,
6- "version" : " 20240420 .01" ,
6+ "version" : " 20241229 .01" ,
77 "requirements" : [
88 " recurring-ical-events" ,
99 " icalendar>=4.0.4" ,
You can’t perform that action at this time.
0 commit comments