
    Mh                    N    d Z ddlmZ  G d de          Z G d de          ZdS )z+
Warnings that can be emitted by nbformat.
    )annotationsc                      e Zd ZdZdS )MissingIDFieldWarninga  

    This warning is emitted in the validation step of nbformat as we used to
    mutate the structure which is cause signature issues.

    This will be turned into an error at later point.

    We subclass FutureWarning as we will change the behavior in the future.

    N__name__
__module____qualname____doc__     Q/var/www/html/test/jupyter/venv/lib/python3.11/site-packages/nbformat/warnings.pyr   r      s        	 	 	 	r   r   c                      e Zd ZdZdS )DuplicateCellIda  

    This warning is emitted in the validation step of nbformat as we used to
    mutate the structure which is cause signature issues.

    This will be turned into an error at later point.

    We subclass FutureWarning as we will change the behavior in the future.
    Nr   r   r   r   r   r      s           r   r   N)r
   
__future__r   FutureWarningr   r   r   r   r   <module>r      s     # " " " " "
 
 
 
 
M 
 
 
	 	 	 	 	m 	 	 	 	 	r   