(self, path: str)
| 90 | """Support the special case of "-" for reading from stdin""" |
| 91 | |
| 92 | async def load_flows_from_path(self, path: str) -> int: |
| 93 | if path == "-": # pragma: no cover |
| 94 | # Need to think about how to test this. This function is scheduled |
| 95 | # onto the event loop, where a sys.stdin mock has no effect. |
| 96 | return await self.load_flows(sys.stdin.buffer) |
| 97 | else: |
| 98 | return await super().load_flows_from_path(path) |
nothing calls this directly
no test coverage detected