I want to use an OrderedDict where the key is a Enum and where the item is a certain class.
How do I use the typing module to hint this? What is the analog to this hinted namedtuple::
Move = typing.NamedTuple('Move', [('actor', Actor), ('location', Location)])
As noted in a comment by AChampion, you can use
MutableMapping
:Addendum for people like me who haven't used the
typing
module before: note that the type definitions use indexing syntax ([T]
) without parentheses. I initially tried something like this:(Note the extraneous parentheses around
[KT, VT]
!)This gives what I consider a rather confusing error: