mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 13:45:36 -04:00
Fixed python2 failures
This commit is contained in:
parent
941074178f
commit
512a21b093
1 changed files with 4 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue