Skip to content

Commit

Permalink
Merge 4817064 into ee17269
Browse files Browse the repository at this point in the history
  • Loading branch information
hschilling committed Aug 17, 2020
2 parents ee17269 + 4817064 commit 00d4a01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openmdao/visualization/n2_viewer/n2_viewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def _get_tree_dict(system, component_execution_orders, component_execution_index
if k in ['linear_solver', 'nonlinear_solver']:
options[k] = system.options[k].SOLVER
else:
if system.options._dict[k]['value'] == _UNDEFINED:
if system.options._dict[k]['value'] is _UNDEFINED:
options[k] = str(system.options._dict[k]['value'])
else:
options[k] = system.options._dict[k]['value']
Expand Down

0 comments on commit 00d4a01

Please sign in to comment.