Skip to content

Commit

Permalink
chore: use gapic-generator-python 0.50.4 (#174)
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 383929493

Source-Link: googleapis/googleapis@dd1ef28

Source-Link: googleapis/googleapis-gen@5074402
  • Loading branch information
gcf-owl-bot[bot] authored Jul 12, 2021
1 parent 5dcc646 commit d380772
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
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
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def py(session: nox.sessions.Session) -> None:


def _get_repo_root() -> Optional[str]:
""" Returns the root folder of the project. """
"""Returns the root folder of the project."""
# Get root of this repository. Assume we don't have directories nested deeper than 10 items.
p = Path(os.getcwd())
for i in range(10):
Expand Down
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 d380772

Please sign in to comment.