Skip to content

Commit 8708eef

Browse files
committed
Remove some debug messages
1 parent 7322417 commit 8708eef

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

block.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,10 @@ def getBlockInputValue(self, inputId):
5353

5454
# Returns block input value
5555
def getInputValue(self, inputId, lookIn=(1, 1)):
56-
print(self.inputs[inputId.upper()], inputId)
5756
if self.inputs[inputId.upper()][lookIn[0]][0] in {4, 0, 5}:
5857
return self.inputs[inputId.upper()][lookIn[0]][1] or 0
5958
elif self.inputs[inputId.upper()][0] == 3:
6059
blockLink = self.inputs[inputId.upper()][1]
61-
print(blockLink)
6260
return self.target.blocks[blockLink].evaluateBlockValue()
6361
else:
6462
pass

0 commit comments

Comments
 (0)