Skip to content

Commit

Permalink
Add degree symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminwp18 committed Jun 8, 2024
1 parent 92380a6 commit 12c8418
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/surface/gui/gui/widgets/temperature.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ def temperature_received(self, msg: Temperature) -> None:

ave = sum(self.temps) / QUEUE_LEN
offset_ave = ave + self.offset
self.ave_temp_label.setText(f'{round(offset_ave, 4)}\tC')
self.ave_temp_label.setText(f'{round(offset_ave, 4)}\t°C')

self.offset_button.setText('Set offset')

0 comments on commit 12c8418

Please sign in to comment.