Skip to content

Commit abca1d5

Browse files
committed
Fix linter
1 parent 2e01e03 commit abca1d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

util/opentelemetry-util-genai/tests/test_upload.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,8 +376,8 @@ def test_system_insruction_is_hashed_to_avoid_reupload(self):
376376
expected_file_name = (
377377
f"memory://{expected_hash}_system_instruction.json"
378378
)
379-
with fsspec.open(expected_file_name, "wb") as f:
380-
f.write(b"asg")
379+
with fsspec.open(expected_file_name, "wb") as file:
380+
file.write(b"asg")
381381
# FIle should exist.
382382
assert self.hook._file_exists(expected_file_name) is True
383383
system_instructions = [

0 commit comments

Comments
 (0)