Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Aug 6, 2024
1 parent 0e2ebdf commit 0b36aee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion yaqd_pi/__version__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Define version."""


import pathlib
import subprocess

Expand Down
6 changes: 3 additions & 3 deletions yaqd_pi/_pi_proem.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,9 +258,9 @@ def _set_temperature(self):
sensor_temp_status = self.proem.params.SensorTemperatureStatus.get_value().name
if sensor_temp_status == "Locked":
self.logger.info("Sensor temp stabilized.")
self._state[
"sensor_temperature"
] = self.proem.params.SensorTemperatureReading.get_value()
self._state["sensor_temperature"] = (
self.proem.params.SensorTemperatureReading.get_value()
)
else:
self._loop.run_in_executor(None, self._check_temp_stabilized())

Expand Down

0 comments on commit 0b36aee

Please sign in to comment.