From 77c589dc0cd3166f706e3341492489bdf2816bd6 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Sun, 4 Aug 2019 19:59:02 +0200 Subject: [PATCH] updates --- utils/google_utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils/google_utils.py b/utils/google_utils.py index f57ca663..211d5485 100644 --- a/utils/google_utils.py +++ b/utils/google_utils.py @@ -33,7 +33,8 @@ def gdrive_download(id='1HaXkef9z6y5l4vUnCYgdmEAj61c6bfWO', name='coco.zip'): # Unzip if archive if name.endswith('.zip'): print('unzipping... ', end='') - os.system('unzip -q %s' % name) + os.system('unzip -q %s' % name) # unzip + os.remove(name) # remove zip to free space print('Done (%.1fs)' % (time.time() - t))