Skip to content

Commit 5945407

Browse files
Update script.py
Made minor changes to resolve FLK-E231 and PYL-C0412 in DeepSource.
1 parent 51708ba commit 5945407

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Google-Meet-Scheduler/script.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
from googleapiclient.discovery import build
2-
from uuid import uuid4
32
from google.auth.transport.requests import Request
43
from google_auth_oauthlib.flow import InstalledAppFlow
4+
from google.oauth2.credentials import Credentials
5+
6+
from uuid import uuid4
57
from typing import Dict, List
68
import os
7-
from google.oauth2.credentials import Credentials
89

910
SCOPES = ["https://www.googleapis.com/auth/calendar"]
1011

@@ -15,7 +16,7 @@ def __init__(self, attendees: Dict[str, str],
1516
authe = self._auth()
1617
attendees_list = [{"email": e} for e in attendees.values()]
1718
self.event_states = self._create_event(
18-
attendees_list, event_time, authe,Topic)
19+
attendees_list, event_time, authe, Topic)
1920

2021
@staticmethod
2122
def _create_event(

0 commit comments

Comments
 (0)