(self, rd, name)
| 69 | return False |
| 70 | |
| 71 | def does_sample(self, rd, name): |
| 72 | for t in self.templates[name]: |
| 73 | if t["rd"] == rd: |
| 74 | template = t |
| 75 | break |
| 76 | return template["samples"] |
| 77 | |
| 78 | |
| 79 | def apply_template(self, name, rd, kwargs, condition = None): |
nothing calls this directly
no outgoing calls
no test coverage detected