This commit is contained in:
Chris Proctor 2023-07-30 17:35:36 -04:00
parent 966af3b529
commit e198c13b95
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ def minimum(data):
def bounds(data): def bounds(data):
"Returns a list of the smallest and largest numbers in data" "Returns a list of the smallest and largest numbers in data"
return min(data), max(data) return [min(data), max(data)]
def clamp(value, low, high): def clamp(value, low, high):
"""Clamps a value to a range from low to high. """Clamps a value to a range from low to high.