(self, script, *args, **kwargs)
| 153 | |
| 154 | # Implementation for `add_to_script`. Derived classes should override this instead of `add_to_script`. |
| 155 | def add_to_script_impl(self, script, *args, **kwargs): |
| 156 | raise NotImplementedError() |
| 157 | |
| 158 | def add_to_script(self, script, *args, **kwargs) -> str: |
| 159 | """ |
no outgoing calls
no test coverage detected