We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41d5ed7 commit c8598b0Copy full SHA for c8598b0
1 file changed
assets/google_drive_opener.py
@@ -61,10 +61,6 @@ def _get_rclone_file(self, file_path):
61
file_name = os.path.basename(relative_path)
62
63
cmd = ['rclone', 'lsjson', f'{drive_name}:{file_path}']
64
- # special case for shared_with_me
65
- if drive_name.lower() == "shared_with_me":
66
- cmd.append('--drive-shared-with-me')
67
-
68
result = subprocess.run(cmd, capture_output=True, text=True, check=True)
69
files = json.loads(result.stdout)
70
0 commit comments