Skip to content

Commit

Permalink
fixed more ruff errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Charlie-Kramer committed Dec 9, 2024
1 parent 583e5dc commit ef0b416
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions parsons/google/google_bigquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -1527,7 +1527,7 @@ def copy_between_projects(
job_config = bigquery.CopyJobConfig()
job_config.write_disposition = "WRITE_TRUNCATE"
job = self.client.copy_table(
source_table_id, destination_table_id, location='US', job_config=job_config
source_table_id, destination_table_id, location="US", job_config=job_config
)
result = job.result()
else:
Expand All @@ -1540,7 +1540,7 @@ def copy_between_projects(
except NotFound:
# destination table doesn't exist, so we can create one
job = self.client.copy_table(
source_table_id, destination_table_id, location='US', job_config=job_config
source_table_id, destination_table_id, location="US", job_config=job_config
)
result = job.result()
logger.info(result)
Expand Down

0 comments on commit ef0b416

Please sign in to comment.