Skip to content

Commit 93d7cdf

Browse files
fix: delete semicolons
1 parent 73cb9d6 commit 93d7cdf

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

experiments/exp2025_04_07_testing_graph_coverage/exp2025_04_07_testing_graph_coverage/testing_graph_coverage.ipynb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
},
128128
{
129129
"cell_type": "code",
130-
"execution_count": 5,
130+
"execution_count": null,
131131
"id": "039a1c3b",
132132
"metadata": {},
133133
"outputs": [],
@@ -139,7 +139,8 @@
139139
" edge['id'] = edge_id\n",
140140
"\n",
141141
" paths = {}\n",
142-
" paths['nodes'] = []; paths['edges'] = []\n",
142+
" paths['nodes'] = []\n",
143+
" paths['edges'] = []\n",
143144
"\n",
144145
" for turn in start_dialogue['messages']:\n",
145146
" if turn['participant'] == 'assistant':\n",

experiments/exp2025_05_05_graph_coverage_class/exp2025_05_05_graph_coverage_class/making_class_for_graph_coverage.ipynb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
},
9797
{
9898
"cell_type": "code",
99-
"execution_count": 4,
99+
"execution_count": null,
100100
"id": "ab3ff47e",
101101
"metadata": {},
102102
"outputs": [],
@@ -110,7 +110,8 @@
110110
" all_paths = []\n",
111111
" for i, aug_dia in enumerate(augmented_dialogs):\n",
112112
" path = {}\n",
113-
" path['nodes'] = []; path['edges'] = []\n",
113+
" path['nodes'] = []\n",
114+
" path['edges'] = []\n",
114115
"\n",
115116
" for turn in aug_dia.messages:\n",
116117
" if turn.participant == 'assistant':\n",

0 commit comments

Comments
 (0)