Skip to content

Commit 90eb9fe

Browse files
committed
Blacken
1 parent 275ea26 commit 90eb9fe

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pandas_gbq/gbq.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -679,10 +679,7 @@ def _cast_empty_df_dtypes(schema_fields, df):
679679
"DataFrame must be empty in order to cast non-nullsafe dtypes"
680680
)
681681

682-
dtype_map = {
683-
"BOOLEAN": bool,
684-
"INTEGER": np.int64,
685-
}
682+
dtype_map = {"BOOLEAN": bool, "INTEGER": np.int64}
686683

687684
for field in schema_fields:
688685
column = str(field["name"])

0 commit comments

Comments
 (0)