@@ -678,7 +678,7 @@ def add_streamlines(
678678 ... radius=0.001,
679679 ... )
680680 >>> pl.show_figure(show_axes=True)
681-
681+ (None, <pyvista.plotting.plotter.Plotter ...>)
682682 """
683683 self ._internal_plotter .add_streamlines (
684684 streamlines = streamlines ,
@@ -788,17 +788,17 @@ def add_scoping(
788788 >>> node_scoping = dpf.Scoping(
789789 ... location=dpf.locations.nodal,
790790 ... ids=mesh.nodes.scoping.ids[0:100]
791- ...)
791+ ... )
792792 >>> element_scoping = dpf.Scoping(
793793 ... location=dpf.locations.elemental,
794794 ... ids=mesh.elements.scoping.ids[0:100]
795- ...)
795+ ... )
796796 >>> from ansys.dpf.core.plotter import DpfPlotter
797797 >>> plt = DpfPlotter()
798798 >>> plt.add_scoping(node_scoping, mesh, show_mesh=True, color="red")
799799 >>> plt.add_scoping(element_scoping, mesh, color="green")
800800 >>> plt.show_figure()
801-
801+ (None, <pyvista.plotting.plotter.Plotter ...>)
802802 """
803803 self ._internal_plotter .add_scoping (
804804 scoping = scoping , mesh = mesh , show_mesh = show_mesh , ** kwargs
@@ -824,7 +824,7 @@ def show_figure(self, **kwargs):
824824 >>> pl = DpfPlotter()
825825 >>> pl.add_field(field, mesh)
826826 >>> pl.show_figure()
827-
827+ (None, <pyvista.plotting.plotter.Plotter ...>)
828828 """
829829 if "notebook" in kwargs .keys ():
830830 warnings .simplefilter ("once" )
0 commit comments