def rpc_fix_code_with_black(self, source, directory): """Formats Python code to conform to the PEP 8 style guide. """ source = get_source(source) return fix_code_with_black(source, directory)