From 0c713b6d0ad880ae50d977e35f41f395cc216c5c Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Tue, 19 Sep 2017 07:29:47 -0400 Subject: [PATCH] Remove 'bigquery_credentials.dat' as default credentials location --- pandas_gbq/gbq.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas_gbq/gbq.py b/pandas_gbq/gbq.py index 37ab2631..415b709d 100644 --- a/pandas_gbq/gbq.py +++ b/pandas_gbq/gbq.py @@ -834,7 +834,7 @@ def delete_and_recreate_table(self, dataset_id, table_id, table_schema): def _get_credentials_file(): return os.environ.get( - 'PANDAS_GBQ_CREDENTIALS_FILE', 'bigquery_credentials.dat') + 'PANDAS_GBQ_CREDENTIALS_FILE') def _parse_data(schema, rows):