mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 16:24:40 +04:00
7 lines
190 B
Python
7 lines
190 B
Python
from __future__ import annotations
|
|
|
|
from pre_commit.all_languages import languages
|
|
|
|
|
|
def test_python_venv_is_an_alias_to_python():
|
|
assert languages['python_venv'] is languages['python']
|