Return the set of all groups of all entry points.
(self)
| 353 | |
| 354 | @property |
| 355 | def groups(self) -> set[str]: |
| 356 | """ |
| 357 | Return the set of all groups of all entry points. |
| 358 | """ |
| 359 | return {ep.group for ep in self} |
| 360 | |
| 361 | @classmethod |
| 362 | def _from_text_for(cls, text, dist): |
no outgoing calls
no test coverage detected