Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion notebooks/14_next_steps.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
" </tr>\n",
"</table>\n",
"\n",
"<div style=\"float:right;\"><a href=\"TOC.ipynb\" target=\"_blank\">Table of contents</a><br><h2>15 Next steps</h2></div>"
"<div style=\"float:right;\"><a href=\"TOC.ipynb\" target=\"_blank\">Table of contents</a><br><h2>14 Next steps</h2></div>"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion notebooks/appendix_b_contour_plots.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"source": [
"# Data to contour is the sum of two Gaussian functions.\n",
"x, y = np.meshgrid(np.linspace(0, 3, 40), np.linspace(0, 2, 30))\n",
"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))"
"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))"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ line-length = 256

[tool.nbqa.addopts]
flake8 = [
"--ignore=E501,E402,E266,F401"
"--ignore=E501,E402,E226,F401"
]