Skip to content

Commit

Permalink
fix pdos python code (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shibu778 authored Apr 4, 2024
1 parent 11f3852 commit bdf66be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/hands-on/pdos.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def data_loader(fname):

data = np.loadtxt(fname)
energy = data[:, 0]
pdos = data[:, 2]
pdos = data[:, 1]

return energy, pdos

Expand Down

0 comments on commit bdf66be

Please sign in to comment.