Skip to content
Snippets Groups Projects

Progress bar for loading files works on linux

1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -33,7 +33,7 @@ class ProgressBar:
"""
self.timer = RepeatTimer(repeat_time, self.memory_check)
self.pbar = tqdm(total = get_file_size(filename),
desc = F"Loading {filename}",
desc = "Loading: ",
unit = "B",
unit_scale = True,
unit_divisor = 1024,
Loading