Skip to content

Commit 6555f39

Browse files
committed
make quotation marks consistent
1 parent 1bcfbdd commit 6555f39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lectures/matplotlib.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ from cycler import cycler
381381
plt.style.use('default')
382382
383383
#set default figure size
384-
plt.rcParams["figure.figsize"] = (10, 6)
384+
plt.rcParams['figure.figsize'] = (10, 6)
385385
# update linewidth
386386
plt.rcParams['lines.linewidth'] = 2
387387
# add horizontal grid lines
@@ -419,7 +419,7 @@ Apply the `default` style sheet again to change your style back to default
419419
plt.style.use('default')
420420
421421
#set default figure size
422-
plt.rcParams["figure.figsize"] = (10, 6)
422+
plt.rcParams['figure.figsize'] = (10, 6)
423423
424424
```
425425

0 commit comments

Comments
 (0)