We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04506c1 commit fddb342Copy full SHA for fddb342
theory/basis.py
@@ -783,7 +783,7 @@ def get_gaussian_basis_info(self):
783
else:
784
info[GAUSSIAN_ROUTE]["/genecp"] = []
785
try:
786
- info[GAUSSIAN_ROUTE].remove("/gen")
+ del info[GAUSSIAN_ROUTE]["/gen"]
787
except KeyError:
788
pass
789
theory/theory.py
@@ -887,7 +887,7 @@ def get_gaussian_header(
887
elif self.geometry.name:
888
other_kw_dict[GAUSSIAN_COMMENT] = [self.geometry.name]
889
890
- other_kw_dict[GAUSSIAN_COMMENT] = "comment"
+ other_kw_dict[GAUSSIAN_COMMENT] = ["comment"]
891
892
# add EmpiricalDispersion info
893
if self.empirical_dispersion is not None:
0 commit comments