Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -933,7 +933,6 @@ def initialize_components(self):

# Initialize BMC and its components
if DeviceDataManager.is_platform_with_bmc():
from .bmc import BMC
self.initialize_bmc()

def get_num_components(self):
Expand Down Expand Up @@ -1232,6 +1231,7 @@ def is_replaceable(self):
def initialize_bmc(self):
if self._bmc_initialized:
return
from .bmc import BMC
self._bmc = BMC.get_instance()
if self._bmc is not None:
try:
Expand Down
Loading