Return true if bootstep should be included. You can define this as an optional predicate that decides whether this step should be created.
(self, parent)
| 320 | pass |
| 321 | |
| 322 | def include_if(self, parent): |
| 323 | """Return true if bootstep should be included. |
| 324 | |
| 325 | You can define this as an optional predicate that decides whether |
| 326 | this step should be created. |
| 327 | """ |
| 328 | return self.enabled |
| 329 | |
| 330 | def instantiate(self, name, *args, **kwargs): |
| 331 | return instantiate(name, *args, **kwargs) |
no outgoing calls