(self, executable: str | None = None)
| 118 | """Base class for Copier subcommands.""" |
| 119 | |
| 120 | def __init__(self, executable: str | None = None) -> None: |
| 121 | self.data: AnyByStrDict = {} |
| 122 | super().__init__(executable) |
| 123 | |
| 124 | answers_file = cli.SwitchAttr( |
| 125 | ["-a", "--answers-file"], |
nothing calls this directly
no outgoing calls
no test coverage detected