We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e01e03 commit abca1d5Copy full SHA for abca1d5
util/opentelemetry-util-genai/tests/test_upload.py
@@ -376,8 +376,8 @@ def test_system_insruction_is_hashed_to_avoid_reupload(self):
376
expected_file_name = (
377
f"memory://{expected_hash}_system_instruction.json"
378
)
379
- with fsspec.open(expected_file_name, "wb") as f:
380
- f.write(b"asg")
+ with fsspec.open(expected_file_name, "wb") as file:
+ file.write(b"asg")
381
# FIle should exist.
382
assert self.hook._file_exists(expected_file_name) is True
383
system_instructions = [
0 commit comments