We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e177a51 commit 5bef9ffCopy full SHA for 5bef9ff
1 file changed
util/opentelemetry-util-genai/src/opentelemetry/util/genai/_upload/completion_hook.py
@@ -177,7 +177,7 @@ def __init__(
177
# Try to delete the file.. But we don't explicitly ask people to grant the GCS delete IAM permission in our
178
# docs, so if delete fails just leave the file..
179
try:
180
- self._fs.rm_file(test_path)
+ self._fs.rm_file(test_path) # pyright: ignore[reportUnknownMemberType]
181
except Exception: # pylint: disable=broad-exception-caught
182
pass
183
0 commit comments