Skip to content

Commit 668b4a5

Browse files
committed
avoid const declaration
1 parent 35546dd commit 668b4a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ReactionMechanismSimulator.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ function __init__()
3131
CondaPkg.add("rdkit", channel="conda-forge")
3232
CondaPkg.add("pydot", channel="conda-forge")
3333

34-
const Pkg = Base.require(Base.PkgId(Base.UUID("44cfe95a-1eb2-52ea-b672-e2afdf69b78f"), "Pkg"))
35-
Pkg.build("PythonCall")
34+
Pkgc = Base.require(Base.PkgId(Base.UUID("44cfe95a-1eb2-52ea-b672-e2afdf69b78f"), "Pkg"))
35+
Pkgc.build("PythonCall")
3636
end
3737
PythonCall.pycopy!(Chem, pyimport("rdkit.Chem"))
3838
PythonCall.pycopy!(Desc, pyimport("rdkit.Chem.Descriptors"))

0 commit comments

Comments
 (0)