Unable to change pushover notifications

I was able to successfully get pushover setup following these instructions:
https://www.home-assistant.io/components/notify.pushover/

However I now try to change the title or URL from whatever I originally entered and it will not take.
I have reloaded, rebooted, commented out, uncommented, etc to no avail. The original pushover config is stuck.

configuration.yaml
notify:
- name: laundry
platform: pushover
api_key: !secret laundry_api
user_key: !secret laundry_user

automations.yaml
action:
- service: notify.laundry
data:
message: “Dryer is done”
title: “cant update this”
data:
url: “http://www.cantupdatethis.com
sound: pianobar
priority: 0

From log:
2019-03-12 13:21:01 DEBUG (MainThread) [homeassistant.core] Bus:Handling <Event call_service[L]: domain=notify, service=laundry, service_data=message=Dryer is done, title=Dryer is done, data=url=https://www.home-assistant.io/, sound=pianobar, priority=0>

You need to format that so we can read it better. I can’t really see, but it looks like there is data in there twice?

- alias: 'Dryer Finished'

trigger:
platform: state
entity_id: sensor.dryer_state
from: ‘Drying’
to: ‘Idle’
action:
- service: notify.laundry
data:
message: “Dryer is done”
title: “cant update this”
data:
url: “http://www.cantupdatethis.com
sound: pianobar
priority: 0

Try your formatting again please. I suspect it is because of data being their twice, but I’m not sure if one data block is part of the action, or trigger, or what.

automations.yaml
  action:
- service: notify.laundry
  data:
    message: "Dryer is done"
    title: "cant update this"
    data:
      url: "http://www.cantupdatethis.com"
      sound: pianobar
      priority: 0

I followed the instructions here https://www.home-assistant.io/components/notify.pushover/

I put it in exactly the same. Also I tried with only one “data” and I still get the old alerts:

- service: notify.entity_id
  data:
    message: "This is the message"

I figured out what was happening.

I was using visual studio to edit the automations file via samba share. I was saving. It said it was saving.

However, I checked the automations config via HA configurator and none of my changes were there.

Oy Vay

All good now.