]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Fix pyflakes errors.
authorDaira Hopwood <david-sarah@jacaranda.org>
Mon, 15 Apr 2013 20:00:53 +0000 (21:00 +0100)
committerDaira Hopwood <daira@jacaranda.org>
Fri, 17 Apr 2015 21:31:39 +0000 (22:31 +0100)
Signed-off-by: Daira Hopwood <david-sarah@jacaranda.org>
src/allmydata/storage/backends/cloud/googlestorage/googlestorage_container.py

index 4d407ed68abf281906d1dc4a7520218445f8a79c..05f2f17e657f933c64e67dc2914c89a1aa362932 100644 (file)
@@ -7,6 +7,7 @@ http://code.google.com/p/google-api-python-client/downloads/list
 import urllib
 try:
     from xml.etree import cElementTree as ElementTree
+    ElementTree  # hush pyflakes
 except ImportError:
     from xml.etree import ElementTree
 
@@ -20,6 +21,7 @@ from twisted.web.http import UNAUTHORIZED
 
 try:
     from oauth2client.client import SignedJwtAssertionCredentials
+    SignedJwtAssertionCredentials  # hush pyflakes
     oauth2client_available = True
 except ImportError:
     oauth2client_available = False