Skip to content

Commit c31ad9f

Browse files
committed
Fix linter
1 parent a65ce73 commit c31ad9f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

instrumentation-genai/opentelemetry-instrumentation-vertexai/tests/test_function_calling_experimental.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,8 @@ def test_tool_events_no_content(
251251

252252

253253
def assert_fsspec_equal(path: str, value: Any) -> None:
254-
__tracebackhide__ = True
254+
# Hide this function and its calls from traceback.
255+
__tracebackhide__ = True # pylint: disable=unused-variable
255256
with fsspec.open(path, "r") as file:
256257
assert json.load(file) == value
257258

0 commit comments

Comments
 (0)