Skip to content

Commit

Permalink
[component] Fix typo for FW_AUTO_ERR_UNKNOWN sonic-net#254
Browse files Browse the repository at this point in the history
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
  • Loading branch information
alexrallen authored Jan 5, 2022
1 parent 4b5aaf8 commit 92203d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sonic_platform_base/component_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 92203d2

Please sign in to comment.