I have the following in my __init__.py
to avoid the repeated import of the typing library:
from typing import Dict, List, Tuple
yet, when I use Dict
in my package code, it raises a NameError 'Dict' is not defined
.
Do I have to include the above import statement explicitly in every class?
Note that typing is not my own module, so it is not inside the package directory