Pylint error and warning fixes

Changes:
     - C0114 Missing module docstring
     - C0103 Constant name "OS_BOOT_CBoot" doesn't conform
       to UPPER_CASE naming style
     - C0103 Constant name "OS_BOOT_DiagBoot" doesn't conform
       to UPPER_CASE naming style

Tested:
    - python3 -m pylint data/variables.py

Change-Id: I7945c31dd25dead2fb39f416eae0c34ae20b3dfb
Signed-off-by: George Keishing <gkeishin@in.ibm.com>
diff --git a/data/variables.py b/data/variables.py
index 55d513f..286ae17 100755
--- a/data/variables.py
+++ b/data/variables.py
@@ -1,3 +1,9 @@
+#!/usr/bin/env python3
+
+r"""
+Variable constants applicable to all OpenBMC test.
+"""
+
 import os
 
 from robot.libraries.BuiltIn import BuiltIn
@@ -140,8 +146,8 @@
 OS_BOOT_CDROM = STATE_DBUS_BASE + "OperatingSystem.Status.OSStatus.CDROMBoot"
 OS_BOOT_ROM = STATE_DBUS_BASE + "OperatingSystem.Status.OSStatus.ROMBoot"
 OS_BOOT_PXE = STATE_DBUS_BASE + "OperatingSystem.Status.OSStatus.PXEBoot"
-OS_BOOT_CBoot = STATE_DBUS_BASE + "OperatingSystem.Status.OSStatus.CBoot"
-OS_BOOT_DiagBoot = STATE_DBUS_BASE + "OperatingSystem.Status.OSStatus.DiagBoot"
+OS_BOOT_CBOOT = STATE_DBUS_BASE + "OperatingSystem.Status.OSStatus.CBoot"
+OS_BOOT_DIAGBOOT = STATE_DBUS_BASE + "OperatingSystem.Status.OSStatus.DiagBoot"
 
 # Boot variables.
 BOOT_SOURCE_DEFAULT = "xyz.openbmc_project.Control.Boot.Source.Sources.Default"