2017-08-24 02:10:50 -05:00
|
|
|
# sfputil.py
|
|
|
|
#
|
|
|
|
# Platform-specific SFP transceiver interface for SONiC
|
|
|
|
#
|
2017-08-05 22:56:32 -05:00
|
|
|
|
|
|
|
try:
|
2017-08-24 02:10:50 -05:00
|
|
|
import arista.utils.sonic_sfputil as arista_sfputil
|
|
|
|
except ImportError as e:
|
|
|
|
raise ImportError("%s - required module not found" % str(e))
|
2017-08-05 22:56:32 -05:00
|
|
|
|
2017-08-24 02:10:50 -05:00
|
|
|
|
|
|
|
SfpUtil = arista_sfputil.getSfpUtil()
|