Fix: google drive
Browse files- GoogleDrive_API.py +1 -0
GoogleDrive_API.py
CHANGED
|
@@ -8,6 +8,7 @@ class GoogleDrive_API:
|
|
| 8 |
def __init__(self, SERVICE_ACCOUNT_FILE_path: str = ""):
|
| 9 |
self.SCOPES = ["https://www.googleapis.com/auth/drive"]
|
| 10 |
self.PARENT_FOLDER_ID = "1r-MlnEpWHx3b1fxHDnHcZ2-Wh_Y89676"
|
|
|
|
| 11 |
self.service = self.authenticate(SERVICE_ACCOUNT_FILE_path)
|
| 12 |
self.clear_files()
|
| 13 |
|
|
|
|
| 8 |
def __init__(self, SERVICE_ACCOUNT_FILE_path: str = ""):
|
| 9 |
self.SCOPES = ["https://www.googleapis.com/auth/drive"]
|
| 10 |
self.PARENT_FOLDER_ID = "1r-MlnEpWHx3b1fxHDnHcZ2-Wh_Y89676"
|
| 11 |
+
|
| 12 |
self.service = self.authenticate(SERVICE_ACCOUNT_FILE_path)
|
| 13 |
self.clear_files()
|
| 14 |
|