We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 273dfc2 commit 10a60fcCopy full SHA for 10a60fc
README.rst
@@ -136,9 +136,10 @@ compatible `GDriveFileSystem`_.
136
137
from pydrive2.fs import GDriveFileSystem
138
139
+ # replace `root` with ID of a drive or directory and give service account access to it
140
fs = GDriveFileSystem("root", client_id=my_id, client_secret=my_secret)
141
- for root, dnames, fnames in fs.walk(""):
142
+ for root, dnames, fnames in fs.walk("root"):
143
...
144
145
.. _`GDriveFileSystem`: https://docs.iterative.ai/PyDrive2/fsspec/
0 commit comments