mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-04-15 18:11:48 +04:00
7 lines
190 B
Python
7 lines
190 B
Python
from __future__ import annotations
|
|
|
|
from pre_commit.languages.all import languages
|
|
|
|
|
|
def test_python_venv_is_an_alias_to_python():
|
|
assert languages['python_venv'] is languages['python']
|