(self, mode: str)
| 126 | return FakeResourceTree(self.files, path) |
| 127 | |
| 128 | def open(self, mode: str) -> StringIO: |
| 129 | assert self.path is not None |
| 130 | if self.path not in self.files: |
| 131 | raise FileNotFoundError(self.path) |
| 132 | return StringIO(self.files[self.path]) |
| 133 | |
| 134 | |
| 135 | def make_repl_cli(sqlexecute: Any | None = None) -> Any: |
no outgoing calls
no test coverage detected