Skip to content

Commit

Permalink
Fix set conversion efficiency
Browse files Browse the repository at this point in the history
  • Loading branch information
alfiopuglisi committed Jul 22, 2024
1 parent f410c4e commit 0a2c66a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pysilico/client/cblue_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def get_cooling_setpoint(self, timeoutInSec=Timeout.GENERIC_COMMAND):
def set_conversion_efficiency(self, conv_eff, timeoutInSec=Timeout.GENERIC_COMMAND):
return self._rpcHandler.sendRequest(
self._requestSocket,
'set_device_conversion_efficiency', [conv_eff],
'set_conversion_efficiency', [conv_eff],
timeout=timeoutInSec)

def get_conversion_efficiency(self, timeoutInSec=Timeout.GENERIC_COMMAND):
Expand Down

0 comments on commit 0a2c66a

Please sign in to comment.