
    tni                     $    d Z  G d d          ZdS )z.Module contains the :class:`.Separator` class.c                   0    e Zd ZdZddeddfdZdefdZdS )		Separatora  A non selectable choice that can be used as part of the choices argument in list type prompts.

    It can be used to create some visual separations between choices in list type prompts.

    Args:
        line: Content to display as the separator.

    Example:
        >>> from InquirerPy import inquirer
        >>> choices = [1, 2, Separator(), 3]
        >>> inquirer.select(message="", choices=choices)
    ---------------linereturnNc                     || _         d S )N_line)selfr   s     Q/var/www/html/gpu-tools/venv/lib/python3.11/site-packages/InquirerPy/separator.py__init__zSeparator.__init__   s    


    c                     | j         S )z,Create string representation of `Separator`.r   )r
   s    r   __str__zSeparator.__str__   s
    zr   )r   )__name__
__module____qualname____doc__strr   r    r   r   r   r      s`          S           r   r   N)r   r   r   r   r   <module>r      s=    4 4         r   