From de34a48e430df1e7d62a738695098e9761dff576 Mon Sep 17 00:00:00 2001 From: Dave Date: Wed, 17 Apr 2024 17:35:02 +0200 Subject: [PATCH] fix google drive filesystem with missing argument --- dlt/common/storages/fsspecs/google_drive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlt/common/storages/fsspecs/google_drive.py b/dlt/common/storages/fsspecs/google_drive.py index 1be862668c..258a8622d1 100644 --- a/dlt/common/storages/fsspecs/google_drive.py +++ b/dlt/common/storages/fsspecs/google_drive.py @@ -237,7 +237,7 @@ def export(self, path: str, mime_type: str) -> Any: fileId=file_id, mimeType=mime_type, supportsAllDrives=True ).execute() - def ls(self, path: str, detail: Optional[bool] = False) -> Any: + def ls(self, path: str, detail: Optional[bool] = False, refresh: Optional[bool] = False) -> Any: """List files in a directory. Args: