Skip to content

Commit

Permalink
fix: show_gui and ui_mode value swap (#2774)
Browse files Browse the repository at this point in the history
fix:  and  value swap
  • Loading branch information
hpohekar authored May 2, 2024
1 parent 7899e14 commit 336769c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ansys/fluent/core/launcher/pyfluent_enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,17 +252,17 @@ def _get_standalone_launch_fluent_version(


def _get_ui_mode(
show_gui: bool,
ui_mode: UIMode,
show_gui: Optional[bool] = None,
):
"""Get the graphics driver.
Parameters
----------
ui_mode: UIMode
Fluent GUI mode.
show_gui: bool
Whether to show the Fluent GUI.
ui_mode: UIMode
Fluent GUI mode.
Returns
-------
Expand Down

0 comments on commit 336769c

Please sign in to comment.