From eb3713de1f5d30aee06b7805c970856043f53913 Mon Sep 17 00:00:00 2001 From: mbarkhau Date: Thu, 12 Dec 2019 16:53:40 +0000 Subject: [PATCH] fix(bigquery): fix typo in import error message (pandas -> pyarrow) (#9955) --- bigquery/google/cloud/bigquery/table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigquery/google/cloud/bigquery/table.py b/bigquery/google/cloud/bigquery/table.py index 2f2ee50cc89e..77cb67bfd0fe 100644 --- a/bigquery/google/cloud/bigquery/table.py +++ b/bigquery/google/cloud/bigquery/table.py @@ -70,7 +70,7 @@ ) _NO_PYARROW_ERROR = ( "The pyarrow library is not installed, please install " - "pandas to use the to_arrow() function." + "pyarrow to use the to_arrow() function." ) _NO_TQDM_ERROR = ( "A progress bar was requested, but there was an error loading the tqdm "