Source code for marshmallow_utils.fields.trimmed

# -*- coding: utf-8 -*-
#
# Copyright (C) 2016-2020 CERN.
#
# Marshmallow-Utils is free software; you can redistribute it and/or modify
# it under the terms of the MIT License; see LICENSE file for more details.

"""Trimming string field."""

from marshmallow import fields


[docs]class TrimmedString(fields.String): """String field which strips whitespace at the ends of the string.""" def _deserialize(self, value, attr, data, **kwargs): """Deserialize string value.""" value = super()._deserialize(value, attr, data, **kwargs) return value.strip()