
    Xh1                     6    d Z ddlmZ ddlmZ  G d de      Zy)zContains the ValueWidget class   )Widget    )Anyc                   :     e Zd ZdZ ed      Zd Z fdZ xZS )ValueWidgetz@Widget that can be used for the input of an interactive functionzThe value of the widget.)helpc                     | j                   S )zReturn the value for this widget which should be passed to
        interactive functions. Custom widgets can change this method
        to process the raw value ``self.value``.
        )value)selfs    R/var/www/html/myenv/lib/python3.12/site-packages/ipywidgets/widgets/valuewidget.pyget_interact_valuezValueWidget.get_interact_value   s    
 zz    c              #   P   K   d t         |          D ]  }|dk7  s	|  y w)Nr
   )super
_repr_keys)r   key	__class__s     r   r   zValueWidget._repr_keys   s/     7%' 	Cg~		s   &&)	__name__
__module____qualname____doc__r   r
   r   r   __classcell__)r   s   @r   r   r   
   s     J/0E r   r   N)r   widgetr   	traitletsr   r    r   r   <module>r      s    %  & r   