"""
Numeric greater than equal conditions
"""
from marshmallow import post_load
from .base import NumericCondition, NumericConditionSchema
[docs]class Gte(NumericCondition):
"""
Condition for number `what` greater than equals `value`
"""
def _is_satisfied(self, what) -> bool:
return what >= self.value
[docs]class GteSchema(NumericConditionSchema):
"""
JSON schema for greater than equals numeric condition
"""
[docs] @post_load
def post_load(self, data, **_): # pylint: disable=missing-docstring,no-self-use
return Gte(**data)