updated config + docs

This commit is contained in:
Tristan Rowley
2020-02-16 17:12:50 +00:00
parent 2a75d39a41
commit caf19fd0b3
3 changed files with 6 additions and 3 deletions

View File

@@ -977,7 +977,7 @@ class Actions(object):
return
try:
#print ("for method_name %s, arguments is %s and len is %s" % (method_name, arguments, len(signature(method).parameters)))
#print ("for method_name %s, arguments is %s and len is %s, got method %s" % (method_name, arguments, len(signature(method).parameters), method))
if arguments is not None and len(signature(method).parameters)==len(arguments): # only pass arguments if count matches method sig
method(*arguments)
else: