Create functions 'withOctave', 'withDuration', 'random' and 'tuplet'

This commit is contained in:
Bartłomiej Pluta
2019-07-04 14:06:38 +02:00
parent 586cb2591b
commit 76c02922ec
7 changed files with 122 additions and 45 deletions

View File

@@ -13,4 +13,9 @@ class FunctionNotFoundException(SmnpException):
class MethodNotFoundException(SmnpException):
def __init__(self, object, method):
self.msg = f"Method '{method}' of type '{object}' not found"
self.msg = f"Method '{method}' of type '{object}' not found"
class IllegalArgumentException(SmnpException):
def __init__(self, msg):
self.msg = msg