fix type annotations in client._generate._get_known_symbols
#390
Labels
good first issue
Good for newcomers
comtypes/comtypes/client/_generate.py
Lines 249 to 267 in 0f3cf2b
list[...]
ordict[...]
are used.Use the pre-PEP585 symbols, such as
from typing import List; List[...]
.comtypes/comtypes/client/_generate.py
Lines 19 to 20 in 0f3cf2b
Currently
Dict
is not imported, so please change there as well.The text was updated successfully, but these errors were encountered: