Skip to content

Commit

Permalink
Fix pdb read
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Jan 2, 2025
1 parent 3cb05b1 commit 9146f6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parakeet/command_line/pdb/_read.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def read_impl(args):
prefix = " " * 4
logger.info("Structure: %s" % structure.name)
for model in structure:
logger.info("%sModel: %s" % (prefix, model.name))
logger.info("%sModel: %s" % (prefix, str(model)))
for chain in model:
logger.info("%sChain: %s" % (prefix * 2, chain.name))
for residue in chain:
Expand Down

0 comments on commit 9146f6b

Please sign in to comment.