Skip to content

Commit

Permalink
pre-commit auto-fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Jan 9, 2025
1 parent 4e51ceb commit c2a618c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pymatgen/io/jdftx/generic_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ def write(self, tag: str, value: Any) -> str:
# - sign, 1 integer left of decimal, decimal, and precision.
# larger numbers auto add places to left of decimal
if self.prec is not None:
value = f"{value:{self.prec+3}.{self.prec}f}"
value = f"{value:{self.prec + 3}.{self.prec}f}"
return self._write(tag, value)

def get_token_len(self) -> int:
Expand Down

0 comments on commit c2a618c

Please sign in to comment.