(phrase_config, attr)
| 202 | include_compound: bool = True |
| 203 | |
| 204 | def _enabled(phrase_config, attr): |
| 205 | return not phrase_config or getattr(phrase_config, attr) |
| 206 | |
| 207 | def get_noun_phrases_from_token(token, phrase_config=None): |
| 208 | if token.pos_ == "NOUN" or token.pos_ == "PRON": |
no outgoing calls
no test coverage detected