Skip to content

Commit 87b8363

Browse files
authored
Better equation format (#15)
1 parent b467680 commit 87b8363

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

notebooks/14_next_steps.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
" </tr>\n",
2121
"</table>\n",
2222
"\n",
23-
"<div style=\"float:right;\"><a href=\"TOC.ipynb\" target=\"_blank\">Table of contents</a><br><h2>15 Next steps</h2></div>"
23+
"<div style=\"float:right;\"><a href=\"TOC.ipynb\" target=\"_blank\">Table of contents</a><br><h2>14 Next steps</h2></div>"
2424
]
2525
},
2626
{

notebooks/appendix_b_contour_plots.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"source": [
5353
"# Data to contour is the sum of two Gaussian functions.\n",
5454
"x, y = np.meshgrid(np.linspace(0, 3, 40), np.linspace(0, 2, 30))\n",
55-
"z = 1.3 * np.exp(-2.5 * ((x - 1.3) ** 2 + (y - 0.8) ** 2)) - 1.2 * np.exp(-2 * ((x - 1.8) ** 2 + (y - 1.3) ** 2))"
55+
"z = 1.3*np.exp(-2.5*((x-1.3)**2 + (y-0.8)**2)) - 1.2*np.exp(-2*((x-1.8)**2 + (y-1.3)**2))"
5656
]
5757
},
5858
{

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ line-length = 256
33

44
[tool.nbqa.addopts]
55
flake8 = [
6-
"--ignore=E501,E402,E266,F401"
6+
"--ignore=E501,E402,E226,F401"
77
]

0 commit comments

Comments
 (0)