[Bug]:Var not defined in file calc_sub_window

In file calc_sub_window.py, here are following codes:

    def getNodeClassFromData(self, data):
        if 'op_code' not in data: return Node
        return get_class_from_opcode(data['op_code'])

Did you mean:

return None

not

return Node