We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd5aba8 commit 3882910Copy full SHA for 3882910
google/cloud/bigquery/_pandas_helpers.py
@@ -339,11 +339,8 @@ def types_mapper(arrow_data_type):
339
340
# TODO: this section does not have a test yet OR at least not one that is
341
# recognized by coverage, hence the pragma. See Issue: #2132
342
- elif (
343
- range_timestamp_dtype is not None
344
- and arrow_data_type.equals( # pragma: NO COVER
345
- range_timestamp_dtype.pyarrow_dtype
346
- )
+ elif range_timestamp_dtype is not None and arrow_data_type.equals(
+ range_timestamp_dtype.pyarrow_dtype
347
):
348
return range_timestamp_dtype
349
0 commit comments