Skip to content

Commit d4945ca

Browse files
committed
fix linter for unused var
1 parent 24722e3 commit d4945ca

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scenarios/evaluate/Supported_Evaluation_Metrics/Agent_Evaluation/Evaluate_SK_Chat_Completion_Agent.ipynb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
},
9999
{
100100
"cell_type": "code",
101-
"execution_count": 3,
101+
"execution_count": null,
102102
"id": "76781359",
103103
"metadata": {},
104104
"outputs": [],
@@ -122,6 +122,7 @@
122122
" def get_item_price(\n",
123123
" self, menu_item: Annotated[str, \"The name of the menu item.\"]\n",
124124
" ) -> Annotated[str, \"Returns the price of the menu item.\"]:\n",
125+
" _ = menu_item # This is just to simulate a function that uses the input.\n",
125126
" return \"$9.99\""
126127
]
127128
},

0 commit comments

Comments
 (0)