o
    i                     @   s0   d dl mZ d dlmZ dZG dd deZdS )    )ClassVar)AbstractFileSystem)ChainedFileSystemc                   @   s"   e Zd ZU dZdZee ed< dS )r   a  Chained filesystem base class.

    A chained filesystem is designed to be layered over another FS.
    This is useful to implement things like caching.

    This base class does very little on its own, but is used as a marker
    that the class is designed for chaining.

    Right now this is only used in `url_to_fs` to provide the path argument
    (`fo`) to the chained filesystem from the underlying filesystem.

    Additional functionality may be added in the future.
    ZchainedprotocolN)__name__
__module____qualname____doc__r   r   str__annotations__ r   r   m/var/www/html/eduruby.in/lip-sync/lip-sync-env/lib/python3.10/site-packages/fsspec/implementations/chained.pyr      s   
 r   N)typingr   Zfsspecr   __all__r   r   r   r   r   <module>   s    