Skip to content

Commit

Permalink
chore(python): use black==22.3.0 (#310)
Browse files Browse the repository at this point in the history
Source-Link: googleapis/synthtool@6fab84a
Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:7cffbc10910c3ab1b852c05114a08d374c195a81cdec1d4a67a1d129331d0bfe
  • Loading branch information
gcf-owl-bot[bot] authored Mar 29, 2022
1 parent b90c2a4 commit b9eef6d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion bigquery-datatransfer/snippets/manage_transfer_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,9 @@ def schedule_backfill(override_values={}):
)

response = transfer_client.schedule_transfer_runs(
parent=transfer_config_name, start_time=start_time, end_time=end_time,
parent=transfer_config_name,
start_time=start_time,
end_time=end_time,
)

print("Started transfer runs:")
Expand Down
3 changes: 2 additions & 1 deletion bigquery-datatransfer/snippets/run_notification_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@

def test_run_notification(capsys, transfer_config_name, pubsub_topic):
run_notification.run_notification(
transfer_config_name=transfer_config_name, pubsub_topic=pubsub_topic,
transfer_config_name=transfer_config_name,
pubsub_topic=pubsub_topic,
)
out, _ = capsys.readouterr()
assert "Updated config:" in out
Expand Down

0 comments on commit b9eef6d

Please sign in to comment.