Skip to content

Commit 8bd00d9

Browse files
committed
fix typo: all caps in PyNULL
1 parent 6e6791a commit 8bd00d9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/init.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# On `PyNull()` and `copy!`:
1+
# On `PyNULL()` and `copy!`:
22
# https://github.com/JuliaPy/PyCall.jl/issues/699#issuecomment-504616552
33

44
"""
@@ -8,14 +8,14 @@ Matplotlib's style settings [1]. Note that directly editing `mpl.rcParams` has n
88
- [1] https://matplotlib.org/stable/tutorials/introductory/customizing.html#the-default-matplotlibrc-file
99
- [2] https://github.com/JuliaPy/PyPlot.jl#modifying-matplotlibrcparams
1010
"""
11-
const rcParams = PyNull()
11+
const rcParams = PyNULL()
1212

1313
"""
1414
A copy of the initial `mpl.rcParams`. Note that we do not use `mpl.rcParamsDefault` or
1515
`mpl.rcParamsOrig`, as these are different to what's actually used by default (e.g. in a
1616
Jupyter notebook).
1717
"""
18-
const rcParams_original = PyNull()
18+
const rcParams_original = PyNULL()
1919

2020
function __init__()
2121
copy!(rcParams_original, mpl.rcParams)

0 commit comments

Comments
 (0)