(self, name: str)
| 80 | __slots__ = ("_name",) |
| 81 | |
| 82 | def __init__(self, name: str) -> None: |
| 83 | self._name = name |
| 84 | |
| 85 | def apply(self, goal: Goal) -> ApplyResult: |
| 86 | """Apply this tactic to a goal via Pantograph.""" |
nothing calls this directly
no outgoing calls
no test coverage detected