mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 05:15:12 +00:00
4 lines
89 B
Python
4 lines
89 B
Python
import re
|
|
from typing import Annotated
|
|
|
|
type X = Annotated[int, lambda: re.compile("x")]
|