Skip to content

Commit 979a590

Browse files
committed
Add docstring to DirFS
1 parent dde0019 commit 979a590

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

fsspec/implementations/dirfs.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33

44

55
class DirFileSystem(AsyncFileSystem):
6+
"""Directory prefix filesystem
7+
8+
The DirFileSystem is a filesystem-wrapper. It assumes every path it is dealing with
9+
is relative to the `path`. After performing the necessary paths operation it
10+
delegates everything to the wrapped filesystem.
11+
"""
12+
613
def __init__(
714
self,
815
path=None,

0 commit comments

Comments
 (0)