# Examples from pyvista.unregister_plotter_component
# ==================================================

import pyvista as pv
@pv.register_plotter_component('tmp')
class TmpComponent:
    def __init__(self, plotter):
        self._plotter = plotter
pv.unregister_plotter_component('tmp')

# ----------------------------------------------------------------------
# Generated by sphinx-examples-as-code https://github.com/pyvista/sphinx-examples-as-code

