12 lines
243 B
Python
12 lines
243 B
Python
|
# psuutil.py
|
||
|
#
|
||
|
# Platform-specific PSU interface for SONiC
|
||
|
#
|
||
|
|
||
|
try:
|
||
|
import arista.utils.sonic_psu as arista_psuutil
|
||
|
except ImportError as e:
|
||
|
raise ImportError("%s - required module not found" % e)
|
||
|
|
||
|
PsuUtil = arista_psuutil.getPsuUtil()
|