mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-05-18 23:18:35 -05:00
Use Hook api in languages
This commit is contained in:
@@ -9,7 +9,7 @@ healthy = helpers.basic_healthy
|
||||
install_environment = helpers.no_install
|
||||
|
||||
|
||||
def run_hook(prefix, hook, file_args):
|
||||
out = hook['entry'].encode('UTF-8') + b'\n\n'
|
||||
def run_hook(hook, file_args):
|
||||
out = hook.entry.encode('UTF-8') + b'\n\n'
|
||||
out += b'\n'.join(f.encode('UTF-8') for f in file_args) + b'\n'
|
||||
return 1, out, b''
|
||||
|
||||
Reference in New Issue
Block a user