mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 08:14:42 +04:00
remove sorting for repo key for additional_deps
in other languages this order can matter (such as ruby)
This commit is contained in:
parent
cdd360645a
commit
a631abdabf
3 changed files with 3 additions and 3 deletions
|
|
@ -33,7 +33,7 @@ def _state_filename_v2(venv: str) -> str:
|
|||
|
||||
|
||||
def _state(additional_deps: Sequence[str]) -> object:
|
||||
return {'additional_dependencies': sorted(additional_deps)}
|
||||
return {'additional_dependencies': additional_deps}
|
||||
|
||||
|
||||
def _read_state(venv: str) -> object | None:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue