From e057cd7fe9a20cf81f9393b00382c4752924287e Mon Sep 17 00:00:00 2001 From: Daniel Sanche Date: Wed, 13 Dec 2023 12:47:33 -0800 Subject: [PATCH] fixed lint issues --- google/cloud/bigtable/data/_async/_mutate_rows.py | 1 - google/cloud/bigtable/data/_helpers.py | 2 +- tests/unit/data/test__helpers.py | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/google/cloud/bigtable/data/_async/_mutate_rows.py b/google/cloud/bigtable/data/_async/_mutate_rows.py index 5286e938f..801b7b55c 100644 --- a/google/cloud/bigtable/data/_async/_mutate_rows.py +++ b/google/cloud/bigtable/data/_async/_mutate_rows.py @@ -15,7 +15,6 @@ from __future__ import annotations from typing import Sequence, TYPE_CHECKING -import asyncio from dataclasses import dataclass import functools diff --git a/google/cloud/bigtable/data/_helpers.py b/google/cloud/bigtable/data/_helpers.py index 647284b6d..0a6720679 100644 --- a/google/cloud/bigtable/data/_helpers.py +++ b/google/cloud/bigtable/data/_helpers.py @@ -16,7 +16,7 @@ """ from __future__ import annotations -from typing import Callable, Sequence, List, Tuple, Any, TYPE_CHECKING +from typing import Sequence, List, Tuple, TYPE_CHECKING import time import enum from collections import namedtuple diff --git a/tests/unit/data/test__helpers.py b/tests/unit/data/test__helpers.py index 625cafde7..5a9c500ed 100644 --- a/tests/unit/data/test__helpers.py +++ b/tests/unit/data/test__helpers.py @@ -17,7 +17,6 @@ from google.api_core import exceptions as core_exceptions import google.cloud.bigtable.data._helpers as _helpers from google.cloud.bigtable.data._helpers import TABLE_DEFAULT -import google.cloud.bigtable.data.exceptions as bigtable_exceptions import mock