diff --git a/src/gam/cmd/cloudstorage.py b/src/gam/cmd/cloudstorage.py index 0a3c04e2..bd9e6ac9 100644 --- a/src/gam/cmd/cloudstorage.py +++ b/src/gam/cmd/cloudstorage.py @@ -2,6 +2,8 @@ import re import sys + +import googleapiclient.http import hashlib import copy import base64 diff --git a/src/gam/cmd/drive/core.py b/src/gam/cmd/drive/core.py index 65d54c93..148c8dd0 100644 --- a/src/gam/cmd/drive/core.py +++ b/src/gam/cmd/drive/core.py @@ -6,6 +6,8 @@ Part of the drive sub-package, extracted from drive.py.""" import re import sys + +import googleapiclient.http import mimetypes import platform import io diff --git a/src/gam/cmd/drive/transfer/fileops.py b/src/gam/cmd/drive/transfer/fileops.py index 845d29ca..ec48d7cd 100644 --- a/src/gam/cmd/drive/transfer/fileops.py +++ b/src/gam/cmd/drive/transfer/fileops.py @@ -12,6 +12,8 @@ import re import json import sys +import googleapiclient.http + from gam.cmd.drive.core import DFA_PARENTID, DFA_PARENTQUERY, _validateUserGetFileIDs, getDriveFileEntity import os import time diff --git a/src/gam/cmd/gmail/messages.py b/src/gam/cmd/gmail/messages.py index 3ac51240..6ff570ce 100644 --- a/src/gam/cmd/gmail/messages.py +++ b/src/gam/cmd/gmail/messages.py @@ -7,6 +7,9 @@ Part of the _gmail_monolith sub-package.""" import re import sys +import googleapiclient.errors +import googleapiclient.http + from gam.util.csv_pf import RI_ENTITY, RI_I, RI_COUNT, RI_J, RI_JCOUNT, RI_ITEM from gam.cmd.gmail.labels import _getUserGmailLabels, _initLabelNameMap, _convertLabelNamesToIds, MESSAGES_MAX_TO_KEYWORDS import io diff --git a/src/gam/cmd/notes.py b/src/gam/cmd/notes.py index 3399715c..3cc04722 100644 --- a/src/gam/cmd/notes.py +++ b/src/gam/cmd/notes.py @@ -3,6 +3,8 @@ import re import json import sys + +import googleapiclient.http import os from gamlib import glaction diff --git a/src/gam/cmd/userop/photos.py b/src/gam/cmd/userop/photos.py index 7d70fc9b..1a6b4179 100644 --- a/src/gam/cmd/userop/photos.py +++ b/src/gam/cmd/userop/photos.py @@ -6,6 +6,8 @@ Part of the _userop_tmp sub-package.""" import re import sys + +import googleapiclient.http import base64 import os