Skip to content

Commit 9827e14

Browse files
fix: rename kwargs
1 parent dc43bdc commit 9827e14

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/ansys/tools/visualization_interface/plotter.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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
)

0 commit comments

Comments
 (0)