Update strip.py

remove range check for strip int params
This commit is contained in:
onyx-and-iris 2022-04-03 00:06:42 +01:00
parent 7272d2ad21
commit ad1c3f9f6b

View File

@ -42,8 +42,6 @@ class InputStrip(Channel):
@limit.setter
def limit(self, val: int):
if val not in range(-40, 13):
raise VMCMDErrors("Expected value from -40 to 12")
self.setter("limit", val)
@property
@ -118,8 +116,6 @@ class VirtualInputStrip(InputStrip):
@k.setter
def k(self, val: int):
if val not in range(5):
raise VMCMDErrors("Expected value from 0 to 4")
self.setter("karaoke", val)