Fix a typo in example code in the 0.14.0 release blog post (#2047)

Credit to #2021 for the spot.
This commit is contained in:
Dave Pearson
2023-03-14 09:47:28 +00:00
committed by GitHub
parent cfb8219e44
commit 98f56aa1f6

View File

@@ -35,7 +35,7 @@ Additionally, we've simplified constructing messages classes. Previously all mes
So prior to 0.14.0 you might have posted messages like the following:
```python
async self.post_message(self.Changed(self, item=self.item))
await self.post_message(self.Changed(self, item=self.item))
```
You can now replace it with this simpler function call: