mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 14:21:53 +00:00
7 lines
139 B
Python
7 lines
139 B
Python
"""Test: parsing of nested string annotations."""
|
|
|
|
from typing import List
|
|
from pathlib import Path, PurePath
|
|
|
|
|
|
x: """List['Path']""" = []
|