(self, rfile: str)
| 68 | raise exceptions.FlowReadException(str(e)) from e |
| 69 | |
| 70 | async def doread(self, rfile: str) -> None: |
| 71 | try: |
| 72 | await self.load_flows_from_path(rfile) |
| 73 | except exceptions.FlowReadException as e: |
| 74 | logger.exception(f"Failed to read {ctx.options.rfile}: {e}") |
| 75 | |
| 76 | def running(self): |
| 77 | if ctx.options.rfile: |
no test coverage detected