7d33387e7c
* Bump sonic-platform-modules-arista submodule * Use sonic_sfputil plugin from the arista library * Fix undefined variable varlog_size * Prevent minigraph.xml to be removed from the flash * Update DCS-7050QX-32 sensors config
10 lines
210 B
Python
10 lines
210 B
Python
#!/usr/bin/env python
|
|
|
|
try:
|
|
import arista.utils.sonic_sfputil as arista_sfputil
|
|
except ImportError, e:
|
|
raise ImportError (str(e) + "- required module not found")
|
|
|
|
|
|
sfputil = arista_sfputil.getSfpUtil()
|