Can't GET RSS feed to work on Dashboard

I have appdeamon installed and followed this post https://community.home-assistant.io/t/news-rss-on-dashboard/24973/3

I ran the:wget <![CDATA[CNN.com - RSS Channel - HP Hero]]>
And that works fine.

My appdaemon.yaml file:

secrets: /config/secrets.yaml
appdaemon:
  latitude: 00.713409
  longitude: -00.411468
  elevation: 201
  time_zone: America/Chicago
  plugins:
    HASS:
      type: hass
  rss_feeds:
   - feed: http://rss.cnn.com/rss/cnn_topstories.rss
     target: news
  rss_update: 300
http:
  url: http://127.0.0.1:5050
admin:
api:
hadashboard:

My dashboard card:

type: sensor
entity: sensor.news
detail: 2

My configuration.yaml:

sensor:
  platform: feedparser
  name: news
  feed_url: 'http://rss.cnn.com/rss/cnn_topstories.rss'
  date_format: '%a, %b %d %I:%M %p'
  inclusions:
    - title
    - link
    - description
    - image
    - language
    - pubDate
  exclusions:
    - language

I think I have this all fubar’d it does show ‘69’ which is how many entries there are currently from the feed.

Is there a more up to date reference on using RSS feeds in the dashboard?

It’s also possible I’m just an idiot.