format whitespace

This commit is contained in:
John Tantalo
2014-12-20 12:33:14 -08:00
parent 781b625aa5
commit cd0570c60f
2 changed files with 102 additions and 102 deletions
+8 -8
View File
@@ -5,13 +5,13 @@ from oauth2client.client import OAuth2WebServerFlow
from oauth2client.tools import run_flow, argparser
def main():
client_id = sys.argv[1]
client_secret = sys.argv[2]
scope = sys.argv[3]
flow = OAuth2WebServerFlow(client_id, client_secret, scope)
storage = Storage('google.json')
flags = argparser.parse_args([])
run_flow(flow, storage, flags)
client_id = sys.argv[1]
client_secret = sys.argv[2]
scope = sys.argv[3]
flow = OAuth2WebServerFlow(client_id, client_secret, scope)
storage = Storage('google.json')
flags = argparser.parse_args([])
run_flow(flow, storage, flags)
if __name__ == '__main__':
main()
main()