We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66d6f7a commit 30fd605Copy full SHA for 30fd605
CHANGELOG.md
@@ -12,8 +12,10 @@
12
13
```python
14
class SomeIntent(Intent):
15
- class EntityParser:
16
- name = StringEntityField(post_processor=lambda x: x.strip())
+ """
+ In this example, the name will be stripped of any leading or trailing whitespace.
17
18
+ name = StringEntityField(default="", post_processor=lambda x: x.strip())
19
```
20
* **All `ability` classes are now available by exact name on the `app` instance**
21
0 commit comments