Controling two LG webOS TV's

Hi

I am trying to control 2 LG screens but getting the following error

Error loading /volume1/@appstore/homeassistant/var/config/configuration.yaml: mapping values are not allowed here
in “/volume1/@appstore/homeassistant/var/config/configuration.yaml”, line 15, column 21

my config file is below

# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:
# Text to speech
tts:
  - platform: google_translate
group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
# Example configuration.yaml entry
wake_on_lan: # enables `wake_on_lan` domain
webostv:
  - name: Living Room TV
    host: 192.168.0.37
      turn_on_action:
        service: wake_on_lan.send_magic_packet
          data:
          mac: 58-FD-B1-DD-0F-7D
  - name: Bedroom TV
    host: 192.168.0.17
      turn_on_action:
        service: wake_on_lan.send_magic_packet
          data:
          mac: 14-C9-13-82-0A-F9
media_player:

notify:

The yaml formatting is wrong (not sure if the issue exists in the forum, or also your configuration yaml), also check the format of the MAC addresses. Here is mine for two different WebOS TVs, which works fine

webostv:
  - host: 10.0.0.13
    name: Media Room TV
    turn_on_action:
      service: wake_on_lan.send_magic_packet
      data:
        mac: "2c:2b:f9:17:3d:f8"
  - host: 10.0.0.15
    name: B9
    turn_on_action:
      service: wake_on_lan.send_magic_packet
      data:
        mac: "f0:86:20:57:7c:4c"