o
    `+ i                     @   s`   d Z ddlmZmZ ddlmZ erddlmZ ddiZee	edZ
ded	efd
dZdgZdS )ah  
This module provides dynamic access to deprecated Jira tools.

When attributes like `JiraAction` are accessed, they are redirected to their new
locations in `langchain_community.tools`. This ensures backward compatibility
while warning developers about deprecation.

Attributes:
    JiraAction (deprecated): Dynamically loaded from langchain_community.tools.
    )TYPE_CHECKINGAny)create_importer)
JiraActionr   zlangchain_community.tools)Zdeprecated_lookupsnamereturnc                 C   s   t | S )z
    Dynamically retrieve attributes from the updated module path.

    Args:
        name (str): The name of the attribute to import.

    Returns:
        Any: The resolved attribute from the updated path.
    )_import_attribute)r    r	   e/home/app/PaddleOCR-VL-test/.venv_paddleocr/lib/python3.10/site-packages/langchain/tools/jira/tool.py__getattr__   s   
r   N)__doc__typingr   r   Zlangchain._apir   Zlangchain_community.toolsr   ZDEPRECATED_LOOKUP__package__r   strr   __all__r	   r	   r	   r
   <module>   s    