From 92203d23d73fdf023398b35dfae73e34deeef2c9 Mon Sep 17 00:00:00 2001 From: Alexander Allen Date: Wed, 5 Jan 2022 13:15:12 -0500 Subject: [PATCH] [component] Fix typo for FW_AUTO_ERR_UNKNOWN #254 Description Fixed typo FW_AUTO_ERR_UKNOWN --> FW_AUTO_ERR_UNKNOWN Motivation and Context This is a typo and in the interest of a readable code base should not remain. There are also very few references to this as of now so changing it now before more references are added is a priority. How Has This Been Tested? Unit tests passing --- sonic_platform_base/component_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sonic_platform_base/component_base.py b/sonic_platform_base/component_base.py index c272356c8f..120f02ccc7 100644 --- a/sonic_platform_base/component_base.py +++ b/sonic_platform_base/component_base.py @@ -12,7 +12,7 @@ FW_AUTO_SCHEDULED = 3 FW_AUTO_ERR_BOOT_TYPE = -1 FW_AUTO_ERR_IMAGE = -2 -FW_AUTO_ERR_UKNOWN = -3 +FW_AUTO_ERR_UNKNOWN = -3 class ComponentBase(object):