o
    ÑtBhj  ã                   @   s   d Z G dd„ dƒZesJ ‚dS )a^  

Vulture sometimes reports used code as unused. To avoid these
false-positives, you can write a Python file that explicitly uses the
code and pass it to vulture:

vulture myscript.py mydir mywhitelist.py

When creating a whitelist file, you have to make sure not to write code
that hides unused code in other files. E.g., this is why we don't import
and access the "sys" module below. If we did import it, vulture would
not be able to detect whether other files import "sys" without using it.

This file explicitly uses code from the Python standard library that is
often incorrectly detected as unused.

c                   @   s   e Zd ZdZdd„ ZdS )Ú	Whitelistz¨
    Helper class that allows mocking Python objects.

    Use it to create whitelist files that are not only syntactically
    correct, but can also be executed.

    c                 C   s   d S )N© )ÚselfÚ_r   r   úy/var/www/html/riverr-enterprise-integrations-main/venv/lib/python3.10/site-packages/vulture/whitelists/whitelist_utils.pyÚ__getattr__   s   zWhitelist.__getattr__N)Ú__name__Ú
__module__Ú__qualname__Ú__doc__r   r   r   r   r   r      s    r   N)r
   r   r   r   r   r   Ú<module>   s    