Skip to content

Commit

Permalink
avoid const declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
mjohnson541 committed Jun 30, 2024
1 parent 35546dd commit 668b4a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ReactionMechanismSimulator.jl
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ function __init__()
CondaPkg.add("rdkit", channel="conda-forge")
CondaPkg.add("pydot", channel="conda-forge")

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

0 comments on commit 668b4a5

Please sign in to comment.