(self)
| 219 | |
| 220 | @default('profile_dir') |
| 221 | def _profile_dir_default(self): |
| 222 | # avoid recursion |
| 223 | if self._in_init_profile_dir: |
| 224 | return |
| 225 | # profile_dir requested early, force initialization |
| 226 | self.init_profile_dir() |
| 227 | return self.profile_dir |
| 228 | |
| 229 | overwrite = Bool(False, |
| 230 | help="""Whether to overwrite existing config files when copying""" |
nothing calls this directly
no test coverage detected