Skip to content

Commit

Permalink
Remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
phofl committed Jul 24, 2024
1 parent f5ba5a6 commit 97c4596
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions dask_bigquery/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,6 @@ def make_create_read_session_request():
pyarrow.py_buffer(session.arrow_schema.serialized_schema)
)
meta = schema.empty_table().to_pandas(**arrow_options_meta)
print(meta.dtypes)

return dd.from_map(
partial(
Expand Down Expand Up @@ -349,7 +348,7 @@ def to_gbq(
fs.mkdir(bucket)

token = tokenize(df)
object_prefix = f"{dt.datetime.utcnow().isoformat()}_{token}"
object_prefix = f"{dt.datetime.now(dt.UTC).isoformat()}_{token}"
path = f"gs://{bucket}/{object_prefix}"

parquet_kwargs_used = {"write_index": False}
Expand Down

0 comments on commit 97c4596

Please sign in to comment.