Here you default to detail=False in _ls
|
async def _ls(self, path, detail=False, refresh=False, versions=False): |
but in the base class of AsyncFileSystem you default to detail=True.
Is it intentional to override the base class in this way? Is every implementor intended to disregard the default value of detail in the base class?
Here you default to
detail=Falsein_lss3fs/s3fs/core.py
Line 1021 in b4d3fa8
but in the base class of
AsyncFileSystemyou default todetail=True.Is it intentional to override the base class in this way? Is every implementor intended to disregard the default value of
detailin the base class?