Skip to content

Commit 891be72

Browse files
gcf-owl-bot[bot]dizcology
authored andcommitted
chore(python): use black==22.3.0 (#310)
Source-Link: googleapis/synthtool@6fab84a Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:7cffbc10910c3ab1b852c05114a08d374c195a81cdec1d4a67a1d129331d0bfe
1 parent b76e965 commit 891be72

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

bigquery-datatransfer/snippets/manage_transfer_configs.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,9 @@ def schedule_backfill(override_values={}):
135135
)
136136

137137
response = transfer_client.schedule_transfer_runs(
138-
parent=transfer_config_name, start_time=start_time, end_time=end_time,
138+
parent=transfer_config_name,
139+
start_time=start_time,
140+
end_time=end_time,
139141
)
140142

141143
print("Started transfer runs:")

bigquery-datatransfer/snippets/run_notification_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717

1818
def test_run_notification(capsys, transfer_config_name, pubsub_topic):
1919
run_notification.run_notification(
20-
transfer_config_name=transfer_config_name, pubsub_topic=pubsub_topic,
20+
transfer_config_name=transfer_config_name,
21+
pubsub_topic=pubsub_topic,
2122
)
2223
out, _ = capsys.readouterr()
2324
assert "Updated config:" in out

0 commit comments

Comments
 (0)