Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ manifest: true
# NOTE: this section is generated by synthtool.languages.python
# See https://github.com/googleapis/synthtool/blob/master/synthtool/languages/python.py
branches:
- branch: v1.54
handleGHRelease: true
releaseType: python
- branch: v0
handleGHRelease: true
releaseType: python
2 changes: 1 addition & 1 deletion google/cloud/aiplatform/telemetry.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def tool_context_manager(tool_name: str) -> None:


def _append_tool_name(tool_name: str) -> None:
if _tool_names_to_append[-1] != tool_name:
if not _tool_names_to_append or _tool_names_to_append[-1] != tool_name:
_tool_names_to_append.append(tool_name)


Expand Down