Fix PingCommand

This commit is contained in:
Pedro 2023-11-26 12:53:28 +01:00
parent e0bd7c5e09
commit e3e486b5fc

View file

@ -2,9 +2,9 @@ from command import TxCommand
class PingCommand(TxCommand):
def setParamsFromApi(self, apiParams):
def set_params_from_api(self, apiParams):
self.dxcall = apiParams['dxcall']
return super().setParamsFromApi()
return super().set_params_from_api(apiParams)
def build_frame(self):
return self.frame_factory.build_ping(self.dxcall)