isort: Reformat using isort.
This commit is contained in:
		
							parent
							
								
									37e2596124
								
							
						
					
					
						commit
						5580c68ae5
					
				
					 162 changed files with 539 additions and 444 deletions
				
			
		|  | @ -1,12 +1,10 @@ | |||
| #!/usr/bin/env python3 | ||||
| import os | ||||
| 
 | ||||
| from oauth2client import client | ||||
| from oauth2client import tools | ||||
| from oauth2client.file import Storage | ||||
| 
 | ||||
| from typing import Optional | ||||
| 
 | ||||
| from oauth2client import client, tools | ||||
| from oauth2client.file import Storage | ||||
| 
 | ||||
| try: | ||||
|     import argparse | ||||
|     flags = argparse.ArgumentParser(parents=[tools.argparser]).parse_args()  # type: Optional[argparse.Namespace] | ||||
|  |  | |||
|  | @ -2,20 +2,21 @@ | |||
| # | ||||
| # This script depends on python-dateutil and python-pytz for properly handling | ||||
| # times and time zones of calendar events. | ||||
| import argparse | ||||
| import datetime | ||||
| import dateutil.parser | ||||
| import httplib2 | ||||
| import itertools | ||||
| import logging | ||||
| import argparse | ||||
| import os | ||||
| import pytz | ||||
| import sys | ||||
| import time | ||||
| from typing import List, Optional, Set, Tuple | ||||
| 
 | ||||
| import dateutil.parser | ||||
| import httplib2 | ||||
| import pytz | ||||
| from oauth2client import client | ||||
| from oauth2client.file import Storage | ||||
| 
 | ||||
| try: | ||||
|     from googleapiclient import discovery | ||||
| except ImportError: | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 PIG208
						PIG208