osmo-lpmgd/lib/switcher_sispm.py

13 lines
362 B
Python

import pysispm
from model import Switcher, SwitcherGroup
# FIXME: port from osmo-gsm-tester.git/src/osmo_gsm_tester/obj/powersupply_sispm.py
class SispmSwitcher(Switcher):
def __init__(self, group: SwitcherGroup, name: str, conf):
super().__init__(group, name)
self.conf = conf
def _status_change(self, new_status: str):
FIXME