(self)
| 109 | self.linebuf += line |
| 110 | |
| 111 | def flush(self): |
| 112 | if self.linebuf != "": |
| 113 | self.logger.log(self.log_level, self.linebuf.rstrip()) |
| 114 | self.linebuf = "" |
| 115 | |
| 116 | |
| 117 | def disable_torch_init(): |
nothing calls this directly
no outgoing calls
no test coverage detected