mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
7 lines
271 B
Python
7 lines
271 B
Python
"""Test for type annotation parsing in `NamedTuple`."""
|
|
|
|
import typing
|
|
|
|
User = typing.NamedTuple('User', **{'name': str, 'password': bytes})
|
|
User = typing.NamedTuple('User', name=str, password=bytes)
|
|
User = typing.NamedTuple('User', [('name', str), ('password', bytes)])
|