pablodz / pipewire_python

No blank lines allowed after function docstring FLK-D202
Documentation
Minor
4 months agoa year old
No blank lines allowed after function docstring
647        # Debug
648        verbose: bool = False,
649    ):
650        """Function to stop process running under pipewire executed by651        python controller and with default process name of `pw-cat`, `pw-play` or `pw-record`.
652
653        Args:
No blank lines allowed after function docstring
435        # Debug,
436        verbose: bool = False,
437    ):
438        """Returns a list of targets to playback or record. Then you can use439        the output to select a device to playback or record.
440        """
441
No blank lines allowed after function docstring
230            pass
231
232    def get_config(self):
233        """Return config dictionary with default or setup variables, remember that234        this object changes only on python-side. Is not updated on real time,
235        For real-time, please create and destroy the class.
236
No blank lines allowed after function docstring
183        self,
184        status: bool = True,
185    ):
186        """Get full log of pipewire stream status with the command `pw-cat`187
188        An example of pw-cli usage is the code below:
189
No blank lines allowed after function docstring
150        # Debug
151        verbose: bool = False,
152    ):
153        """Get version of pipewire installed on OS by executing the following154        code:
155
156        ```bash