We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 057a5f0 commit 24eff56Copy full SHA for 24eff56
adafruit_emc2101/emc2101_lut.py
@@ -93,7 +93,7 @@ def __repr__(self):
93
def __str__(self):
94
"""return the official string representation of the LUT"""
95
value_strs = []
96
- lut_keys = list(sorted(self.lut_values.keys()))
+ lut_keys = tuple(sorted(self.lut_values.keys()))
97
for temp in lut_keys:
98
fan_drive = self.lut_values[temp]
99
value_strs.append("%d deg C => %.1f%% duty cycle" % (temp, fan_drive))
0 commit comments