Skip to content

Commit 4f28a92

Browse files
committed
fix some codeblock spacing
1 parent 18d622d commit 4f28a92

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

content/bridging-python-and-rust.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ pngme-python/
3535
├── Cargo.toml
3636
├── pyproject.toml
3737
├── README.md
38+
3839
```
3940

4041
- **pngme/src/lib.rs**: The original Rust code with PNG manipulation functionality, that we want to expose as a Python library
@@ -158,6 +159,7 @@ features = ["pyo3/extension-module"]
158159
Building is as simple as:
159160

160161
```bash
162+
161163
maturin develop
162164
```
163165

@@ -186,6 +188,7 @@ def test_pngme_encode():
186188
PyO3 lets you map Rust errors to Python exceptions, so Python users get idiomatic error messages as shown below:
187189

188190
```python
191+
189192
import pytest
190193

191194
def test_pngme_unknown_file():

0 commit comments

Comments
 (0)