Skip to content

Commit

Permalink
Allow to use GS for Fe
Browse files Browse the repository at this point in the history
  • Loading branch information
unkcpz committed Oct 8, 2024
1 parent e3a02d9 commit e1ffc23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aiida_sssp_workflow/workflows/convergence/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def __get__(self, obj, type):

def is_valid_convergence_configuration(value, _=None):
"""Check if the configuration is valid"""
valid_configurations = UNARIE_CONFIGURATIONS
valid_configurations = UNARIE_CONFIGURATIONS + ["GS"]
if value not in valid_configurations:
return f"Configuration {value} is not valid. Valid configurations are {valid_configurations}"

Expand Down

0 comments on commit e1ffc23

Please sign in to comment.