Skip to content

Commit

Permalink
remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicamillar committed Oct 22, 2024
1 parent 9d53bd9 commit 2fee8b8
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions gw_spaceheat/actors/api_tank_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,7 @@ def _process_microvolts(self, data: MicroVolts) -> None:
value_list.append(data.MicroVoltsList[i])
channel_name_list.append(f"{data.AboutNodeNameList[i]}-micro-v")
print(f"Updated {channel_name_list[-1]}: {round(volts,3)} V")
print(f"{self.name} TempCalcMethod is {self._component.gt.TempCalcMethod}")
if self._component.gt.TempCalcMethod == TempCalcMethod.SimpleBetaForPico:
print("Got into the if loop")
try:
value_list.append(int(self.simple_beta_for_pico(volts) * 1000))
channel_name_list.append(data.AboutNodeNameList[i])
Expand Down

0 comments on commit 2fee8b8

Please sign in to comment.