178fc032ae
- Update sfputil plugins for Dell FORCE10-S6000, Arista 7050-QX-32, 7050-QX-32-S
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()
|