TSwifty-SN6 / venv /Lib /site-packages /fsspec /exceptions.py
Floobin's picture
Upload folder using huggingface_hub
0a594a8 verified
Raw
History Blame Contribute Delete
348 Bytes
"""
fsspec user-defined exception classes
"""
import asyncio
class BlocksizeMismatchError(ValueError):
"""
Raised when a cached file is opened with a different blocksize than it was
written with
"""
...
class FSTimeoutError(asyncio.TimeoutError):
"""
Raised when a fsspec function timed out occurs
"""
...