From de08b7464c19292b3d549ce4807c5f9921ae0e9c Mon Sep 17 00:00:00 2001 From: CJ Wong Date: Fri, 26 Mar 2021 03:19:09 -0700 Subject: [PATCH] Remove unneeded imports --- google/api_handler.py | 2 -- google/calendar.py | 2 +- main.py | 5 +---- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/google/api_handler.py b/google/api_handler.py index 074c1a2..30c94e9 100644 --- a/google/api_handler.py +++ b/google/api_handler.py @@ -17,8 +17,6 @@ from google.oauth2 import service_account -import google.calendar -import google.sheets from config import LOGGER # Replaced imports: diff --git a/google/calendar.py b/google/calendar.py index b8ae270..f1497b0 100644 --- a/google/calendar.py +++ b/google/calendar.py @@ -16,7 +16,7 @@ import pendulum from google.oauth2 import service_account -from googleapiclient.discovery import build, Resource +from googleapiclient.discovery import build import config diff --git a/main.py b/main.py index f1b946e..c8aba01 100644 --- a/main.py +++ b/main.py @@ -11,14 +11,11 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -import logging -from pathlib import Path -from typing import Dict, Tuple, Union import google.api_handler import google.calendar import google.sheets -from config import CONF, LOGGER +from config import LOGGER def main() -> None: