Skip to content

Commit 52a49ec

Browse files
committed
update incorrect comment about return values
1 parent 43a2997 commit 52a49ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/fixate/drivers/dmm/fluke_8846a.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def min_avg_max(self, samples=1, sample_time=1):
116116
automatically samples the DMM for a given number of samples and returns the min, max, and average values
117117
:param samples: number of samples to take
118118
:param sample_time: time to wait for the DMM to take the samples
119-
return: min, avg, max values as floats in a dictionary
119+
return: min, avg, max values as floats in a dataclass
120120
"""
121121

122122
self._write(f"SAMP:COUN {samples}")

src/fixate/drivers/dmm/keithley_6500.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def min_avg_max(self, samples=1, sample_time=1):
152152
automatically samples the DMM for a given number of samples and returns the min, max, and average values
153153
:param samples: number of samples to take
154154
:param sample_time: time to wait for the DMM to take the samples
155-
return: min, avg, max values as floats in a dictionary
155+
return: min, avg, max values as floats in a dataclass
156156
"""
157157

158158
self._write(f'TRAC:MAKE "TempTable", {samples}')

0 commit comments

Comments
 (0)