We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7322417 commit 8708eefCopy full SHA for 8708eef
block.py
@@ -53,12 +53,10 @@ def getBlockInputValue(self, inputId):
53
54
# Returns block input value
55
def getInputValue(self, inputId, lookIn=(1, 1)):
56
- print(self.inputs[inputId.upper()], inputId)
57
if self.inputs[inputId.upper()][lookIn[0]][0] in {4, 0, 5}:
58
return self.inputs[inputId.upper()][lookIn[0]][1] or 0
59
elif self.inputs[inputId.upper()][0] == 3:
60
blockLink = self.inputs[inputId.upper()][1]
61
- print(blockLink)
62
return self.target.blocks[blockLink].evaluateBlockValue()
63
else:
64
pass
0 commit comments