Update code to adhere to coding guideline

Change-Id: I859340a2f17e19b7b5cbb24807499db7ad455f74
Signed-off-by: George Keishing <gkeishin@in.ibm.com>
diff --git a/lib/utils.robot b/lib/utils.robot
index 852989d..81b82a2 100755
--- a/lib/utils.robot
+++ b/lib/utils.robot
@@ -1594,11 +1594,11 @@
     # Description of argument(s):
     # openbmc_password   The root password for the open BMC system.
 
-    @{password} =  Create List  ${openbmc_password}
-    ${data} =  Create Dictionary  data=@{password}
+    @{password}=  Create List  ${openbmc_password}
+    ${data}=  Create Dictionary  data=@{password}
 
-    ${headers} =  Create Dictionary  Content-Type=application/json
-    ${resp} =  Post Request  openbmc  ${BMC_USER_URI}root/action/SetPassword
+    ${headers}=  Create Dictionary  Content-Type=application/json
+    ${resp}=  Post Request  openbmc  ${BMC_USER_URI}root/action/SetPassword
     ...  data=${data}  headers=${headers}
     Should Be Equal As Strings  ${resp.status_code}  ${HTTP_OK}
     ...  msg=Updating the new root password failed, RC=${resp.status_code}.