yaml: format with prettier

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I193f690f3612fe72ec69030f81f4d5096a761601
diff --git a/yaml/xyz/openbmc_project/Led/Physical.interface.yaml b/yaml/xyz/openbmc_project/Led/Physical.interface.yaml
index f4f9784..5378dfe 100644
--- a/yaml/xyz/openbmc_project/Led/Physical.interface.yaml
+++ b/yaml/xyz/openbmc_project/Led/Physical.interface.yaml
@@ -4,59 +4,59 @@
 properties:
     - name: State
       type: enum[self.Action]
-      default: 'Off'
+      default: "Off"
       description: >
-        Current State of the LED.
+          Current State of the LED.
 
     - name: DutyOn
       type: byte
       default: 50
       description: >
-        Percentage time the LED needs to be ON while blinking.
+          Percentage time the LED needs to be ON while blinking.
 
     - name: Color
       type: enum[self.Palette]
       default: Unknown
       description: >
-        Color that the LED can emit.
+          Color that the LED can emit.
 
     - name: Period
       type: uint16
       default: 1000
       description: >
-        LED blink period expressed as milliseconds per on/off cycle.
+          LED blink period expressed as milliseconds per on/off cycle.
 
 enumerations:
     - name: Action
       description: >
           Possible states a LED can be in.
       values:
-        - name: 'Off'
-          description: >
-            LED is in OFF state
-        - name: 'On'
-          description: >
-            LED is in solid ON state
-        - name: 'Blink'
-          description: >
-            LED is blinking
+          - name: "Off"
+            description: >
+                LED is in OFF state
+          - name: "On"
+            description: >
+                LED is in solid ON state
+          - name: "Blink"
+            description: >
+                LED is blinking
 
     - name: Palette
       description: >
           Possible colors that the LED can emit.
       values:
-        - name: Unknown
-          description: >
-            Color emitted by LED is unknown.
-        - name: Red
-          description: >
-            LED can emit Red color.
-        - name: Green
-          description: >
-            LED can emit Green color.
-        - name: Blue
-          description: >
-            LED can emit Blue color.
-        - name: Yellow
-          description: >
-            LED can emit Yellow color.
+          - name: Unknown
+            description: >
+                Color emitted by LED is unknown.
+          - name: Red
+            description: >
+                LED can emit Red color.
+          - name: Green
+            description: >
+                LED can emit Green color.
+          - name: Blue
+            description: >
+                LED can emit Blue color.
+          - name: Yellow
+            description: >
+                LED can emit Yellow color.