What am I missing. Automation not triggering

I am trying to change the state of my input select washing machine status once the power goes above 4 on my smart plug sensor. This is not working, wondering what I am missing.

- id: '1545534744503'
  alias: Washer Notification
  trigger:
  - above: '4'
    entity_id: sensor.hank_hkzwso03_smart_plug_power
    platform: numeric_state
  condition:
  - condition: state
    entity_id: input_select.washing_machine_status
    state: Idle
  action:
  - condition: state
    entity_id: input_select.washing_machine_status
    state: Washing

Please format your code properly, see top of page.

Remove the quotes from around the number 4. Like so:

  - above: 4