minos.common.model.types.generics module

class minos.common.model.types.generics.GenericTypeProjector(type_hints, mapper)[source]

Bases: object

Generic Type Projector.

__init__(type_hints, mapper)[source]
build()[source]

Builder a projection of type vars values.

Return type

dict[str, type]

Returns

A dict of type hints.

classmethod from_model(type_)[source]

Build a new instance from model.

Parameters

type – The model class.

Return type

minos.common.model.types.generics.GenericTypeProjector

Returns

A GenericTypeProjector instance.

minos.common.model.types.generics.unpack_typevar(value)[source]

Unpack TypeVar into a union of possible types.

Parameters

value (typing.TypeVar) – A type var instance.

Return type

type

Returns

A union of types.