Skip to content

Commit 92203d2

Browse files
authored
[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
1 parent 4b5aaf8 commit 92203d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sonic_platform_base/component_base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
FW_AUTO_SCHEDULED = 3
1313
FW_AUTO_ERR_BOOT_TYPE = -1
1414
FW_AUTO_ERR_IMAGE = -2
15-
FW_AUTO_ERR_UKNOWN = -3
15+
FW_AUTO_ERR_UNKNOWN = -3
1616

1717

1818
class ComponentBase(object):

0 commit comments

Comments
 (0)