We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65f1657 commit c7cf8efCopy full SHA for c7cf8ef
1 file changed
bigquery/docs/snippets.py
@@ -983,12 +983,7 @@ def test_load_table_from_file(client, to_delete):
983
job_config.autodetect = True
984
985
with open(filename, "rb") as source_file:
986
- job = client.load_table_from_file(
987
- source_file,
988
- table_ref,
989
- location="US", # Must match the destination dataset location.
990
- job_config=job_config,
991
- ) # API request
+ job = client.load_table_from_file(source_file, table_ref, job_config=job_config)
992
993
job.result() # Waits for table load to complete.
994
0 commit comments