9 lines
210 B
Python
9 lines
210 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
try:
|
||
|
import arista.utils.sonic_eeprom as arista_eeprom
|
||
|
except ImportError as e:
|
||
|
raise ImportError("%s - required module not found" % e)
|
||
|
|
||
|
board = arista_eeprom.getTlvInfoDecoder()
|