File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/ansys/tools/visualization_interface Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ def show(
6666 plottable_object : Any = None ,
6767 screenshot : str = None ,
6868 name_filter : bool = None ,
69- ** plotting_options
69+ ** kwargs
7070 ) -> None :
7171 """Show the plotted objects.
7272
@@ -78,12 +78,12 @@ def show(
7878 Path to save a screenshot, by default None.
7979 name_filter : bool, optional
8080 Flag to filter the object, by default None.
81- plotting_options : dict
82- Additional plotting options the selected backend accepts.
81+ kwargs : dict
82+ Additional options the selected backend accepts.
8383 """
8484 self ._backend .show (
8585 plottable_object = plottable_object ,
8686 screenshot = screenshot ,
8787 name_filter = name_filter ,
88- ** plotting_options
88+ ** kwargs
8989 )
You can’t perform that action at this time.
0 commit comments