mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
14 lines
180 B
Python
14 lines
180 B
Python
var: int
|
|
a = var # OK
|
|
|
|
b = c = int # OK
|
|
|
|
a.b = int # OK
|
|
|
|
d, e = int, str # OK
|
|
|
|
f, g, h = int, str, TypeVar("T") # OK
|
|
|
|
i: TypeAlias = int | str # OK
|
|
|
|
j: TypeAlias = int # OK
|