Skip to content

Commit

Permalink
fix typo in get_doc
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielYang59 committed Jun 19, 2024
1 parent f6f032d commit e5280b0
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions pymatgen/io/lobster/outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1036,22 +1036,22 @@ def get_doc(self) -> dict[str, Any]:
"basis_functions": self.basis_functions,
#
"timing": self.timing,
"warning:nes": self.warning_lines,
"info_or:normalization": self.info_orthonormalization,
"info_li:": self.info_lines,
"warning_lines": self.warning_lines,
"info_orthonormalization": self.info_orthonormalization,
"info_lines": self.info_lines,
#
"has_doscar": self.has_doscar,
"has_doscar_ls": self.has_doscar_lso,
"has_cohpca": self.has_cohpcar,
"has_coopca": self.has_coopcar,
"has_cobica": self.has_cobicar,
"has_doscar_lso": self.has_doscar_lso,
"has_cohpcar": self.has_cohpcar,
"has_coopcar": self.has_coopcar,
"has_cobicar": self.has_cobicar,
"has_charge": self.has_charge,
"has_madelun": self.has_madelung,
"has_projectio": self.has_projection,
"has_bandoverlap": self.has_bandoverlaps,
"has_fatband": self.has_fatbands,
"has_grosspopulatio": self.has_grosspopulation,
"has_density_of_energie": self.has_density_of_energies,
"has_madelung": self.has_madelung,
"has_projection": self.has_projection,
"has_bandoverlaps": self.has_bandoverlaps,
"has_fatbands": self.has_fatbands,
"has_grosspopulation": self.has_grosspopulation,
"has_density_of_energies": self.has_density_of_energies,
}

def as_dict(self) -> dict[str, Any]:
Expand Down

0 comments on commit e5280b0

Please sign in to comment.