This repository was archived by the owner on Apr 14, 2022. It is now read-only.
This repository was archived by the owner on Apr 14, 2022. It is now read-only.
Fix List[T] not inheriting list/List methods #260
Closed
Description
E.g.
from typing import List
def func(a: List[str]):
pass
Currently a
has no completions instead of having completions for a list.
See generics from PEP 484 for some details.