Skip to content

Commit

Permalink
Merge pull request #30 from molssi-seamm/dev
Browse files Browse the repository at this point in the history
Fixed bug reading from mmcif files.
  • Loading branch information
seamm authored May 16, 2022
2 parents cd39bf8 + 8a8dab1 commit f78d199
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 f78d199

Please sign in to comment.