Skip to content

Commit

Permalink
Fix ruff format
Browse files Browse the repository at this point in the history
  • Loading branch information
JosePizarro3 committed Mar 27, 2024
1 parent 2ddff25 commit d38e91d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/nomad_parser_magres/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
from nomad.datamodel import EntryArchive
from nomad_parser_magres.parser import MagresParser

if __name__ == "__main__":
if __name__ == '__main__':
configure_logging(console_log_level=logging.DEBUG)
archive = EntryArchive()
MagresParser().parse(sys.argv[1], archive, logging)
json.dump(archive.m_to_dict(), sys.stdout, indent=2)
json.dump(archive.m_to_dict(), sys.stdout, indent=2)

0 comments on commit d38e91d

Please sign in to comment.