13 lines
265 B
Python
13 lines
265 B
Python
# sfputil.py
|
|
#
|
|
# Platform-specific SFP transceiver interface for SONiC
|
|
#
|
|
|
|
try:
|
|
import arista.utils.sonic_sfputil as arista_sfputil
|
|
except ImportError as e:
|
|
raise ImportError("%s - required module not found" % str(e))
|
|
|
|
|
|
SfpUtil = arista_sfputil.getSfpUtil()
|