more debug
This commit is contained in:
parent
c0beac0132
commit
b9182c3bb4
1 changed files with 2 additions and 2 deletions
|
@ -71,10 +71,10 @@ def jez(target, arg, index):
|
|||
|
||||
def _apply(index, target, arg, func):
|
||||
if type(arg) is int:
|
||||
print("{} {} {}".format(func, target, arg))
|
||||
print("{} {} {} {}".format(index, func.__name__, target, arg))
|
||||
return func(target, arg, index)
|
||||
elif type(arg) is str and arg in this.values:
|
||||
print("{} {} {}".format(func, target, this.values[arg]))
|
||||
print("{} {} {} {}".format(index, func.__name__, target, this.values[arg]))
|
||||
return func(target, this.values[arg], index)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue