We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bd7299 commit 0675b1dCopy full SHA for 0675b1d
1 file changed
script.js
@@ -249,7 +249,10 @@ async function runCodeInline() {
249
const parts = line.split('\r');
250
const lastPart = parts[parts.length - 1].trim();
251
if (lastPart) {
252
- cleanLines.push(lastPart);
+ // Only add tqdm lines that are at 100% (final state)
253
+ if (!lastPart.includes('it/s]') || lastPart.trim().startsWith('100%')) {
254
+ cleanLines.push(lastPart);
255
+ }
256
}
257
} else {
258
const trimmed = line.trim();
0 commit comments