1 2 3 4 5 6 7 8 9 10 11 12 13
from . recipe import Recipe class InterfaceEthernet(Recipe): def __init__(self, session, command_file): super().__init__(session, command_file) # Define any custom processing of parameters here by overriding # configure: # # def configure(self): # self.data = transform_data(self.data) # super().configure()