Phillips Hue activate_scene is not working

For some reason this automation isn’t working. It shows up in the Home Assistant UI. The UI says when it was run last. So that means the automation is working but for some reason it’s not communicating with the lights. I can turn the lights on and off manually through the UI. Any ideas?

In automations.yaml

- id: '1552163911184'
  alias: GR Sunset
  trigger:
- event: sunset
  platform: sun
condition: []
action:
- data:
   group_name: "Great room"
   scene_name: "Great Room Evening"
 service: hue.hue_activate_scene

Pulled from Hue Bridge

Group

"1": {
        "name": "Great room",
	"lights": [
		"5",
		"12",
		"3",
		"13"
	],
	"sensors": [],
	"type": "Room",
	"state": {
		"all_on": true,
		"any_on": true
	},
	"recycle": false,
	"class": "Living room",
	"action": {
		"on": true,
		"bri": 254,
		"hue": 8502,
		"sat": 129,
		"effect": "none",
		"xy": [
			0.4504,
			0.4081
		],
		"ct": 353,
		"alert": "none",
		"colormode": "xy"
	}
 },

Scene

"MZBQRizSeK-IMZj": {
"name": "Great Room Evening ",
"type": "GroupScene",
"group": "1",
"lights": [
	"3",
	"5",
	"12",
	"13"
],
"recycle": false,
"locked": true,
"appdata": {
	"version": 1,
	"data": "DquHf_r01_d99"
},
"picture": "",
"lastupdated": "2019-03-10T03:20:30",
"version": 2
}

Turns out the scene name had a space at the end that I didn’t have in the automation. Adding that fixed it.