コード例 #1
0
ファイル: server.py プロジェクト: inq/dotemacs
    def rpc_fix_code_with_yapf(self, source):
        """Formats Python code to conform to the PEP 8 style guide.

        """
        source = get_source(source)
        return fix_code_with_yapf(source)
コード例 #2
0
ファイル: server.py プロジェクト: RobertHilbrich/emacs
    def rpc_fix_code_with_yapf(self, source):
        """Formats Python code to conform to the PEP 8 style guide.

        """
        source = get_source(source)
        return fix_code_with_yapf(source)