U
    7h                     @   s&   d Z ddlmZ G dd dejZdS )z
Field-like classes that aren't really fields. It's easier to use objects that
have the same attributes as fields sometimes (avoids a lot of special casing).
    )fieldsc                       s    e Zd ZdZ fddZ  ZS )OrderWrtzn
    A proxy for the _order database field that is used when
    Meta.order_with_respect_to is specified.
    c                    s"   d|d< d|d< t  j|| d S )N_ordernameFeditable)super__init__)selfargskwargs	__class__ W/var/www/formularioweb/env/lib/python3.8/site-packages/django/db/models/fields/proxy.pyr      s    zOrderWrt.__init__)__name__
__module____qualname____doc__r   __classcell__r   r   r   r   r   	   s   r   N)r   Zdjango.db.modelsr   ZIntegerFieldr   r   r   r   r   <module>   s   