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