Add missing close quote to height Python example

This commit is contained in:
Dave Pearson
2022-11-11 17:59:33 +00:00
parent 3f761319f0
commit 90c14815a0

View File

@@ -46,6 +46,6 @@ width: auto
```python
self.styles.height = 10
self.styles.height = "50%
self.styles.height = "50%"
self.styles.height = "auto"
```