Skip to content

Commit e028730

Browse files
authored
PEP8 Spacing
spacing above top-level class: https://www.python.org/dev/peps/pep-0008/#id21
1 parent 46f0cb5 commit e028730

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

calendar/quickstart/quickstart.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
# If modifying these scopes, delete the file token.pickle.
2525
SCOPES = ['https://www.googleapis.com/auth/calendar.readonly']
2626

27+
2728
def main():
2829
"""Shows basic usage of the Google Calendar API.
2930
Prints the start and name of the next 10 events on the user's calendar.
@@ -63,6 +64,7 @@ def main():
6364
start = event['start'].get('dateTime', event['start'].get('date'))
6465
print(start, event['summary'])
6566

67+
6668
if __name__ == '__main__':
6769
main()
6870
# [END calendar_quickstart]

0 commit comments

Comments
 (0)