Skip to content

Commit 95a5f9c

Browse files
committed
Fix LGTM Warnings
1 parent b454e05 commit 95a5f9c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

notebooks/wasm-engines.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2358,7 +2358,7 @@
23582358
"metadata": {},
23592359
"outputs": [],
23602360
"source": [
2361-
"plt_fig = plotThreeTestsExecTime(df_interp, blake2b_test_names, '../images/wasm-interp-blake2b-exec.png', title=\"wasm interpreters compared - blake2b\")"
2361+
"plotThreeTestsExecTime(df_interp, blake2b_test_names, '../images/wasm-interp-blake2b-exec.png', title=\"wasm interpreters compared - blake2b\")"
23622362
]
23632363
},
23642364
{
@@ -5945,7 +5945,7 @@
59455945
"source": [
59465946
"\n",
59475947
"# test to make sure that scout wasm3 data is present\n",
5948-
"test_scout_wasm3_plot = plotOneTestColoredTicks(df_scout_data[df_scout_data['engine'].isin(['wasm3-with-bignums'])],\n",
5948+
"plotOneTestColoredTicks(df_scout_data[df_scout_data['engine'].isin(['wasm3-with-bignums'])],\n",
59495949
" '../images/.scout_wasm3_test1_png')\n"
59505950
]
59515951
},
@@ -5957,7 +5957,7 @@
59575957
"source": [
59585958
"\n",
59595959
"# test to make sure that scout_wamr.c data is present\n",
5960-
"test_scout_wasm3_plot = plotOneTestColoredTicks(df_scout_data[df_scout_data['engine'].isin(['wasm3-with-bignums'])],\n",
5960+
"plotOneTestColoredTicks(df_scout_data[df_scout_data['engine'].isin(['wasm3-with-bignums'])],\n",
59615961
" '../images/.scout_wasm3_test2_png')\n"
59625962
]
59635963
},

notebooks/wasm-engines.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1843,7 +1843,7 @@ def plotThreeTestsExecTime(df_testdata, three_names, filepath, title="Title", fi
18431843
# In[ ]:
18441844

18451845

1846-
plt_fig = plotThreeTestsExecTime(df_interp, blake2b_test_names, '../images/wasm-interp-blake2b-exec.png', title="wasm interpreters compared - blake2b")
1846+
plotThreeTestsExecTime(df_interp, blake2b_test_names, '../images/wasm-interp-blake2b-exec.png', title="wasm interpreters compared - blake2b")
18471847

18481848

18491849
# In[ ]:
@@ -4622,7 +4622,7 @@ def plotTimeVsGas(df_benchdata, filepath, title=""):
46224622

46234623

46244624
# test to make sure that scout wasm3 data is present
4625-
test_scout_wasm3_plot = plotOneTestColoredTicks(df_scout_data[df_scout_data['engine'].isin(['wasm3-with-bignums'])],
4625+
plotOneTestColoredTicks(df_scout_data[df_scout_data['engine'].isin(['wasm3-with-bignums'])],
46264626
'../images/.scout_wasm3_test1_png')
46274627

46284628

@@ -4631,7 +4631,7 @@ def plotTimeVsGas(df_benchdata, filepath, title=""):
46314631

46324632

46334633
# test to make sure that scout_wamr.c data is present
4634-
test_scout_wasm3_plot = plotOneTestColoredTicks(df_scout_data[df_scout_data['engine'].isin(['wasm3-with-bignums'])],
4634+
plotOneTestColoredTicks(df_scout_data[df_scout_data['engine'].isin(['wasm3-with-bignums'])],
46354635
'../images/.scout_wasm3_test2_png')
46364636

46374637

0 commit comments

Comments
 (0)