Skip to content

Commit

Permalink
Resolving LGTM errors
Browse files Browse the repository at this point in the history
  • Loading branch information
praveenraja1 committed Sep 21, 2022
1 parent 73b5070 commit 0236de3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
__all__ = ["platform", "chassis"]
from sonic_platform import *

__all__ = ['chassis', 'eeprom', 'platform', 'psu', 'sfp', 'thermal', 'fan']
from . import platform
from . import chassis
from . import eeprom
from . import psu
from . import sfp
from . import thermal
from . import fan
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def __init__(self, fantray_index):
FanDrawerBase.__init__(self)
self.fantrayindex = fantray_index + 1
for i in range(MIDSTONE_FANS_PER_FANTRAY):
self._fan_list.append(Fan(fantray_index, i))
self._fan_list.append(Fan(fantray_index, i, False))

def get_name(self):
"""
Expand Down

0 comments on commit 0236de3

Please sign in to comment.