(self)
| 218 | return self.kind == inspect.Parameter.KEYWORD_ONLY |
| 219 | |
| 220 | def is_positional_only(self) -> bool: |
| 221 | return self.kind == inspect.Parameter.POSITIONAL_ONLY |
| 222 | |
| 223 | def is_positional_or_keyword(self) -> bool: |
| 224 | return self.kind == inspect.Parameter.POSITIONAL_OR_KEYWORD |
no outgoing calls
no test coverage detected