From 18ae1a4e61d968c709469a91731e66bb6f282f73 Mon Sep 17 00:00:00 2001 From: Peter Lamut Date: Wed, 21 Apr 2021 23:22:39 +0200 Subject: [PATCH] Remove unused stuff from table.py --- google/cloud/bigquery/table.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/google/cloud/bigquery/table.py b/google/cloud/bigquery/table.py index 3842b3366..a2e8fd133 100644 --- a/google/cloud/bigquery/table.py +++ b/google/cloud/bigquery/table.py @@ -19,7 +19,6 @@ import copy import datetime import functools -import logging import operator import pytz import warnings @@ -48,12 +47,6 @@ from google.cloud.bigquery.encryption_configuration import EncryptionConfiguration -_LOGGER = logging.getLogger(__name__) - -_NO_BQSTORAGE_ERROR = ( - "The google-cloud-bigquery-storage library is not installed, " - "please install google-cloud-bigquery-storage to use bqstorage features." -) _NO_PANDAS_ERROR = ( "The pandas library is not installed, please install " "pandas to use the to_dataframe() function."