Fixed python2 failures

This commit is contained in:
Adam Nelson 2017-03-19 17:40:21 -04:00
parent 941074178f
commit 512a21b093

View file

@ -240,7 +240,10 @@ class KeffSearch(object):
# Set the iteration counter
self._i = 0
# Create a new dictionary with the arguments from args and kwargs
args.update(kwargs)
# Perform the search
zero_value = root_finder(**args, **kwargs)
zero_value = root_finder(**args)
return zero_value