Hi,
To avoid to have to maintain unnecessary long import lists like this:
|
from typing import Any, Callable, Coroutine, Dict, Iterable, List, Optional, Sequence, Tuple, Type, Union, cast |
I suggest that you always do
and then refer to types via t.(...) like t.Iterable etc. which is a nice trick.
All best,
Jamil