fix docs for MorphAnalysis.__contains__ (#13433)

This commit is contained in:
Sofie Van Landeghem 2024-05-02 16:46:41 +02:00 committed by GitHub
parent d3a232f773
commit c195ca4f9c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -147,9 +147,10 @@ Whether a feature/value pair is in the analysis.
> assert "Feat1=Val1" in morph
> ```
| Name | Description |
| ----------- | --------------------------------------------- |
| **RETURNS** | A feature/value pair in the analysis. ~~str~~ |
| Name | Description |
| ------------ | --------------------------------------------------------------------- |
| `feature` | A feature/value pair. ~~str~~ |
| **RETURNS** | Whether the feature/value pair is contained in the analysis. ~~bool~~ |
### MorphAnalysis.\_\_iter\_\_ {id="morphanalysis-iter",tag="method"}