I am looking for a python linter that checks if type hints come from the typing module.
As in, this:
def func(arg: list)-> None:
""" does something """
should be:
from typing import List
def func(arg: List)-> None:
""" does something """