(self, path)
| 1191 | self.prevRef = refRec |
| 1192 | |
| 1193 | def trim_path(self, path): |
| 1194 | return f"{path[:15]}...{path[-15:]}" if len(path) > 33 else path |
| 1195 | |
| 1196 | def trim_cmd(self, path, length=30): |
| 1197 | return f"{path[:length]}..." if len(path) > (length + 3) else path |
no outgoing calls
no test coverage detected