Skip to content

Commit

Permalink
fix/lineWidth -> linewidth (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
Luftalian authored Jul 20, 2024
1 parent 59610da commit 119daf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/notebooks/Representative Cocycles.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"source": [
"def drawLineColored(X, C):\n",
" for i in range(X.shape[0]-1):\n",
" plt.plot(X[i:i+2, 0], X[i:i+2, 1], c=C[i, :], lineWidth = 3)\n",
" plt.plot(X[i:i+2, 0], X[i:i+2, 1], c=C[i, :], linewidth = 3)\n",
"\n",
"def plotCocycle2D(D, X, cocycle, thresh):\n",
" \"\"\"\n",
Expand Down

0 comments on commit 119daf4

Please sign in to comment.