PATH:
opt
/
hc_python
/
lib
/
python3.12
/
site-packages
/
pre_commit
from __future__ import annotations import functools from typing import Any import yaml Loader = getattr(yaml, 'CSafeLoader', yaml.SafeLoader) yaml_compose = functools.partial(yaml.compose, Loader=Loader) yaml_load = functools.partial(yaml.load, Loader=Loader) Dumper = getattr(yaml, 'CSafeDumper', yaml.SafeDumper) def yaml_dump(o: Any, **kwargs: Any) -> str: # when python/mypy#1484 is solved, this can be `functools.partial` return yaml.dump( o, Dumper=Dumper, default_flow_style=False, indent=4, sort_keys=False, **kwargs, )
[-] color.py
[edit]
[-] errors.py
[edit]
[-] logging_handler.py
[edit]
[+]
__pycache__
[-] __init__.py
[edit]
[-] xargs.py
[edit]
[-] repository.py
[edit]
[-] envcontext.py
[edit]
[-] all_languages.py
[edit]
[+]
commands
[-] lang_base.py
[edit]
[-] prefix.py
[edit]
[-] yaml.py
[edit]
[-] constants.py
[edit]
[+]
resources
[-] util.py
[edit]
[-] main.py
[edit]
[-] store.py
[edit]
[-] staged_files_only.py
[edit]
[-] file_lock.py
[edit]
[+]
languages
[-] hook.py
[edit]
[+]
..
[-] parse_shebang.py
[edit]
[+]
meta_hooks
[-] clientlib.py
[edit]
[-] output.py
[edit]
[-] git.py
[edit]
[-] error_handler.py
[edit]
[-] __main__.py
[edit]
[-] yaml_rewrite.py
[edit]