Source code for core.orm.func

from __future__ import annotations

from sqlalchemy.sql.functions import ReturnTypeFromArgs


from typing import TypeVar


[docs] _T = TypeVar('_T')
[docs] class unaccent(ReturnTypeFromArgs[_T]): # noqa: N801 """ Produce an UNACCENT expression. """
[docs] inherit_cache = True