(self, session)
| 182 | return f"code: {json.repr(lines)}" |
| 183 | |
| 184 | def configure(self, session): |
| 185 | session.config["code"] = self.code |
| 186 | session.config["args"] = self.args |
| 187 | |
| 188 | def cli(self, env): |
| 189 | return ["-c", self.code] + self.argslist |
no outgoing calls