Update tests/test_utils_tqdm_mod.py
Run CI Tests / test (push) Successful in 38s

This commit is contained in:
2025-07-30 14:57:15 +02:00
parent c35dc71372
commit fa863cb6a0
+2 -2
View File
@@ -11,8 +11,8 @@ sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')
from slic.utils.tqdm_mod import * from slic.utils.tqdm_mod import *
def extract_last_line(output): def extract_lines(output, label):
return output.strip().splitlines()[-1] return [line for line in output.strip().splitlines() if label in line]
def get_bar_visual(line): def get_bar_visual(line):
try: try: