Skip to content

Commit

Permalink
Fixed bug writing mmcif files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Saxe authored and Paul Saxe committed May 14, 2022
1 parent cd39bf8 commit 8a8dab1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions read_structure_step/formats/cif/mmcif.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def load_mmcif(
system = system_db.create_system()
configuration = system.create_configuration()

configuration.from_mmcif_text(text)
configuration.from_mmcif_text(text)

logger.debug(f" added system {system_db.n_systems}: {block_name}")

Expand Down Expand Up @@ -203,7 +203,7 @@ def load_mmcif(
system = system_db.create_system()
configuration = system.create_configuration()

configuration.from_mmcif_text(text)
configuration.from_mmcif_text(text)

logger.debug(f" added system {system_db.n_systems}: {block_name}")

Expand Down

0 comments on commit 8a8dab1

Please sign in to comment.