cli: fix relative volume adjustment #12
|
@ -170,10 +170,11 @@ def set_volume(
|
||||||
if volume.startswith("+") or volume.startswith("-"):
|
if volume.startswith("+") or volume.startswith("-"):
|
||||||
current_volume = api.get_volume()
|
current_volume = api.get_volume()
|
||||||
new_volume = max(0, min(100, current_volume + int(volume)))
|
new_volume = max(0, min(100, current_volume + int(volume)))
|
||||||
|
new_volume = int(new_volume)
|
||||||
|
|||||||
else:
|
else:
|
||||||
new_volume = int(volume)
|
new_volume = int(volume)
|
||||||
|
|
||||||
rich.print(api.set_volume(volume), file=sys.stderr)
|
rich.print(api.set_volume(new_volume), file=sys.stderr)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
Loading…
Reference in New Issue
all inputs to max are int, this line should be a noop?
api.get_volume() returns a float, api.set_volume() requires an int
current-volume + int(volume) is a float
could just fix one of them instead of this though