mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 05:15:12 +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']""" = []
|