Hi all. I’m getting a configuration error that i can’t for the life of me figure out. Here’s the error and code:
Error: bad indentation of a mapping entry at line 62, column 3:
- platform: waze_travel_time
^
- platform: waze_travel_time
origin: 41.86796514031835, -87.79860319797348
destination: 41.92619244927354, -87.64844741516359
region: "US"
name: "To Work"
This part throws no error and the hyphen starts on column 3. The below does and it’s written the exact same way.
- platform: waze_travel_time
origin: 41.92619244927354, -87.64844741516359
destination: 41.86796514031835, -87.79860319797348
region: "US"
name: "From Work"
- platform: waze_travel_time (this is error line)
origin: 41.92619244927354, -87.64844741516359
destination: 41.888656093792434, -87.78008871701326
region: "US"
name: "To OLA"
- platform: waze_travel_time
origin: 41.86796514031835, -87.79860319797348
destination: 41.97934892255915, -87.77608986118928
region: "US"
name: "To Topweb"
- platform: waze_travel_time
origin: 41.86796514031835, -87.79860319797348
destination: 41.98146586454654, -87.7726337918738
region: "US"
name: "To Radio"
Everything is lined up exactly the same as the first part, with the hyphen starting on column 3.
Is anyone able to help figure out what the error is?