Skip to content

Commit

Permalink
update incorrect comment about return values
Browse files Browse the repository at this point in the history
  • Loading branch information
Overlord360 committed Dec 6, 2024
1 parent 43a2997 commit 52a49ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/fixate/drivers/dmm/fluke_8846a.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def min_avg_max(self, samples=1, sample_time=1):
automatically samples the DMM for a given number of samples and returns the min, max, and average values
:param samples: number of samples to take
:param sample_time: time to wait for the DMM to take the samples
return: min, avg, max values as floats in a dictionary
return: min, avg, max values as floats in a dataclass
"""

self._write(f"SAMP:COUN {samples}")
Expand Down
2 changes: 1 addition & 1 deletion src/fixate/drivers/dmm/keithley_6500.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def min_avg_max(self, samples=1, sample_time=1):
automatically samples the DMM for a given number of samples and returns the min, max, and average values
:param samples: number of samples to take
:param sample_time: time to wait for the DMM to take the samples
return: min, avg, max values as floats in a dictionary
return: min, avg, max values as floats in a dataclass
"""

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

0 comments on commit 52a49ec

Please sign in to comment.