Skip to content
Snippets Groups Projects
Commit e3dc90f7 authored by Henning Glawe's avatar Henning Glawe
Browse files

clarify sort order

parent 3639e7ca
No related branches found
No related tags found
No related merge requests found
...@@ -85,7 +85,8 @@ def translate_qe_xc_num(xc_functional_num, exact_exchange_fraction=None): ...@@ -85,7 +85,8 @@ def translate_qe_xc_num(xc_functional_num, exact_exchange_fraction=None):
apply_terms_subtract(xc_data, xc_data_subtract) apply_terms_subtract(xc_data, xc_data_subtract)
apply_terms_filter(xc_data) apply_terms_filter(xc_data)
result = [] result = []
for (k, v) in sorted(xc_data.items()): for k in sorted(xc_data.keys()):
v = xc_data[k]
result.append(v) result.append(v)
return (xc_section_method, result) return (xc_section_method, result)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment