Skip to content

Commit f03eae1

Browse files
committed
Formatting
1 parent 53fc488 commit f03eae1

File tree

2 files changed

+8
-13
lines changed

2 files changed

+8
-13
lines changed

python/mrchem/api.py

+6-11
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,11 @@
2525

2626
import math
2727

28-
from .helpers import (
29-
write_scf_fock,
30-
write_scf_guess,
31-
write_scf_solver,
32-
write_scf_properties,
33-
write_scf_plot,
34-
write_rsp_calc,
35-
parse_wf_method,
36-
)
37-
from .periodictable import PeriodicTable as PT, PeriodicTableByZ as PT_Z
28+
from .helpers import (parse_wf_method, write_rsp_calc, write_scf_fock,
29+
write_scf_guess, write_scf_plot, write_scf_properties,
30+
write_scf_solver)
31+
from .periodictable import PeriodicTable as PT
32+
from .periodictable import PeriodicTableByZ as PT_Z
3833
from .validators import MoleculeValidator
3934

4035

@@ -127,7 +122,7 @@ def write_molecule(user_dict, origin):
127122
"charge": mol.charge,
128123
"coords": mol.get_coords_in_program_syntax(),
129124
}
130-
125+
131126
if "pcm" in user_dict["WaveFunction"]["environment"].lower():
132127
mol_dict["cavity"] = {
133128
"spheres": mol.get_cavity_in_program_syntax(),

src/qmoperators/two_electron/ReactionPotential.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525

2626
#pragma once
2727

28-
#include "qmoperators/QMPotential.h"
2928
#include "environment/GPESolver.h"
29+
#include "qmoperators/QMPotential.h"
3030

3131
namespace mrchem {
3232
/** @class ReactionPotential
@@ -56,7 +56,7 @@ class ReactionPotential : public QMPotential {
5656
friend class ReactionOperator;
5757

5858
protected:
59-
std::unique_ptr<GPESolver> solver; //!< A GPESolver instance used to compute the ReactionPotential.
59+
std::unique_ptr<GPESolver> solver; //!< A GPESolver instance used to compute the ReactionPotential.
6060
std::shared_ptr<OrbitalVector> orbitals; ///< Unperturbed orbitals defining the ground-state electron density for the SCRF procedure.
6161

6262
void setup(double prec) override;

0 commit comments

Comments
 (0)