(mod: Module)
| 171 | |
| 172 | def _propagate(module: Module, func_str: str, *args, **kargs): |
| 173 | def fn(mod: Module): |
| 174 | if isinstance(mod, QATModule): |
| 175 | getattr(mod, func_str)(*args, **kargs) |
| 176 | |
| 177 | module.apply(fn) |
| 178 |
no outgoing calls
no test coverage detected