Skip to content

Commit

Permalink
fix: pyscf imports after eljost#313
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Steinmetzer committed Nov 17, 2024
1 parent f7f7c51 commit 01fbf7a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pysisyphus/calculators/PySCF.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@

import numpy as np
import pyscf
from pyscf import gto, lib, qmmm
from pyscf import __all__ # ensure all modules are accessible under the pyscf namespace
from pyscf import grad, gto, lib, hessian, qmmm, tddft

from pysisyphus.calculators.OverlapCalculator import OverlapCalculator
from pysisyphus.helpers import geom_loader
Expand Down Expand Up @@ -277,7 +276,7 @@ def run(self, mol, point_charges=None):

# Keep mf and dump mol
# save_mol(mol, self.make_fn("mol.chk"))
self.mf = mf.reset() # release integrals and other temporary intermediates.
self.mf = mf.reset() # release integrals and other temporary intermediates.
self.calc_counter += 1

return mf
Expand Down

0 comments on commit 01fbf7a

Please sign in to comment.