Sorry for being slow on the reply. If you still need help with this, I managed to fix this by changing the "none_to_float" function around line 173 to
def none_to_float(param): if param is None: return 0.0 if isinstance(param, position): return param.relative return param
Think that should help make it not crash anymore.