Remove pylint warning from sensors
This commit is contained in:
parent
46eb737dc8
commit
f79e578aaf
1 changed files with 1 additions and 2 deletions
|
|
@ -152,12 +152,11 @@ class Sensors():
|
|||
sleep(0.5)
|
||||
|
||||
def save_average_temps(self, temp_label, seconds=10):
|
||||
# pylint: disable=unused-variable
|
||||
"""Save average temps under temp_label over provided seconds.."""
|
||||
self.clear_temps()
|
||||
|
||||
# Get temps
|
||||
for i in range(seconds):
|
||||
for _ in range(seconds):
|
||||
self.update_sensor_data(exit_on_thermal_limit=False)
|
||||
sleep(1)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue