Skip to content

Commit

Permalink
Fixes cluster dump solver capitalization issue
Browse files Browse the repository at this point in the history
  • Loading branch information
maxnus committed Sep 23, 2023
1 parent 29b945b commit bed7955
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vayesta/solver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,6 @@ def get_right_CC(*args, **kwargs):
return UCISD_Solver
else:
return RCISD_Solver
if solver == "DUMP":
if solver.upper() == "DUMP":
return DumpSolver
raise ValueError("Unknown solver: %s" % solver)

0 comments on commit bed7955

Please sign in to comment.