Skip to content

Commit

Permalink
correct indexing for atomic species
Browse files Browse the repository at this point in the history
  • Loading branch information
kayahans committed Nov 15, 2024
1 parent beda931 commit 233b132
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nexus/lib/pwscf_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -1458,7 +1458,7 @@ def write_text(self):
for in1 in index1:
for in2 in index2:
if in2 in nn[in1]:
combs.append([in1, in2])
combs.append([in1+1, in2+1])
#end if
#end for
#end for
Expand Down

0 comments on commit 233b132

Please sign in to comment.