Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
yomichi committed Aug 5, 2024
1 parent 41b267f commit 54202f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/dcore/dcore_anacont.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

def dcore_anacont(inifile):
# tool is removed but read for error message
parser = create_parser(["system", "model", "impurity_solver", "tool", "post", "post.anacont"])
parser = create_parser(["system", "model", "tool", "post", "post.anacont"])
parser.read(inifile)
params = parser.as_dict()
parse_parameters(params)
Expand Down
2 changes: 1 addition & 1 deletion src/dcore/program_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def create_parser(target_sections=None):
Create a parser for all program options of DCore
"""
if target_sections is None:
parser = TypedParser(['mpi', 'model', 'pre', 'system', 'impurity_solver', 'control', 'post', 'post.anacont', 'post.anacont.pade', 'post.anacont.spm', 'post.spectrum', 'bse', 'vertex', 'sparse_bse'])
parser = TypedParser(['mpi', 'model', 'pre', 'system', 'impurity_solver', 'control', 'post', 'post.anacont', 'post.anacont.pade', 'post.anacont.spm', 'post.spectrum', 'post.check', 'bse', 'vertex', 'sparse_bse'])
else:
parser = TypedParser(target_sections)

Expand Down

0 comments on commit 54202f2

Please sign in to comment.