My Garden Irrigation

After updating to 0.103, an error appears in the log and watering does not turn on.
Error:

[homeassistant.components.script] Error executing script script.irrigation_run_a_cycle. Unknown error for call_service at pos 4:
...
...
TypeError: can only concatenate str (not "int") to str

To make it work again, you need to make changes to the garden_irrigation.yaml file:
Lines 93 and 97

cycle: 1

to

cycle: '1'

Lines 119 and 123

cycle: 2

to

cycle: '2'

Line 348

zone: 1

to

zone: '1'

Line 357

zone: 2

to

zone: '2'

Line 366

zone: 3

to

zone: '3'

Line 375

zone: 4

to

zone: '4'

Line 384

zone: 5

to

zone: '5'
1 Like