pablodz / pipewire_python

Doc line too long FLK-W505
Style
Minor
5 months agoa year old
doc line too long (91 > 88 characters)
651        python controller and with default process name of `pw-cat`, `pw-play` or `pw-record`.
652
653        Args:
654            mode (`str`) : string to kill process under `pw-cat`, `pw-play` or `pw-record`.655
656        Returns:
657            - stdoutdict (`dict`) : a dictionary with keys of `mode`.
doc line too long (94 > 88 characters)
648        verbose: bool = False,
649    ):
650        """Function to stop process running under pipewire executed by
651        python controller and with default process name of `pw-cat`, `pw-play` or `pw-record`.652
653        Args:
654            mode (`str`) : string to kill process under `pw-cat`, `pw-play` or `pw-record`.
doc line too long (101 > 88 characters)
627            - stdout (`str`): Shell response to the command in stdout format
628            - stderr (`str`): Shell response response to the command in stderr format
629        """
630        # warnings.warn("The name of the function may change on future releases", DeprecationWarning)631
632        mycommand = ["pw-cat", "--record", audio_filename] + _generate_command_by_dict(
633            mydict=self._pipewire_configs, verbose=verbose
doc line too long (92 > 88 characters)
620        ```
621
622        Args:
623            audio_filename (`str`): Path of the file to be played. *default='myplayback.wav'624            verbose (`bool`): True enable debug logs. *default=False
625
626        Returns:
doc line too long (101 > 88 characters)
587            - stdout (`str`): Shell response to the command in stdout format
588            - stderr (`str`): Shell response response to the command in stderr format
589        """
590        # warnings.warn("The name of the function may change on future releases", DeprecationWarning)591
592        mycommand = [
593            "pw-cat",