From 701a1831bfd367e8554308935f21aac7d2e699fd Mon Sep 17 00:00:00 2001 From: Rob Weber Date: Mon, 26 Aug 2019 15:18:38 -0500 Subject: [PATCH] don't need these imports --- resources/lib/vfs.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/resources/lib/vfs.py b/resources/lib/vfs.py index ae916f3..27c905b 100644 --- a/resources/lib/vfs.py +++ b/resources/lib/vfs.py @@ -1,16 +1,12 @@ import utils as utils -import tinyurl as tinyurl import xbmc import xbmcvfs import xbmcgui import zipfile -import zlib -import os import os.path import sys import dropbox from dropbox.files import WriteMode,CommitInfo,UploadSessionCursor -from pydrive.drive import GoogleDrive from authorizers import DropboxAuthorizer,GoogleDriveAuthorizer class Vfs: @@ -232,7 +228,7 @@ class DropboxFileSystem(Vfs): self.client.files_upload_session_append_v2(f.read(self.MAX_CHUNK),upload_cursor) upload_cursor.offset = f.tell() - #if no errors we're good! + #if no errors we're good! return True except Exception as anError: utils.log(str(anError))