2019-06-07 11:01:09 -05:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2019-02-09 00:02:01 -06:00
|
|
|
#
|
2019-06-07 11:01:09 -05:00
|
|
|
# Arista PSU interface for SONiC
|
2019-02-09 00:02:01 -06:00
|
|
|
#
|
|
|
|
|
|
|
|
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()
|