minos.common.model.types.comparators module

class minos.common.model.types.comparators.TypeHintComparator(first, second)[source]

Bases: object

Type Hint Comparator class.

__init__(first, second)[source]
match()[source]

Check if the two types match.

Return type

bool

Returns

True if there is a match or False otherwise.

minos.common.model.types.comparators.is_model_subclass(type_)[source]

Check if the given type field is subclass of Model.

Return type

bool

minos.common.model.types.comparators.is_model_type(value_)[source]

Check if the given type is a model instance.

minos.common.model.types.comparators.is_type_subclass(type_)[source]

Check if the given type field is subclass of type.

Return type

bool