Skip to content

Commit

Permalink
fixup! Downgrade Python version in test environment to make DSSP work
Browse files Browse the repository at this point in the history
  • Loading branch information
padix-key committed Dec 20, 2024
1 parent 6563417 commit 7688a68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/tutorial/structure/io.rst
Original file line number Diff line number Diff line change
Expand Up @@ -211,9 +211,9 @@ automatically - from a single :class:`BinaryCIFData` to an entire
.. jupyter-execute::

uncompressed_data = pdbx.BinaryCIFData(np.arange(100))
print(f"Uncompressed size: {len(uncompressed_data.serialize()["data"])} bytes")
print(f"Uncompressed size: {len(uncompressed_data.serialize()['data'])} bytes")
compressed_data = pdbx.compress(uncompressed_data)
print(f"Compressed size: {len(compressed_data.serialize()["data"])} bytes")
print(f"Compressed size: {len(compressed_data.serialize()['data'])} bytes")


Using structures from a PDBx file
Expand Down

0 comments on commit 7688a68

Please sign in to comment.