Skip to content

Commit

Permalink
bugfix in pbar update
Browse files Browse the repository at this point in the history
  • Loading branch information
nachovizzo committed Jan 23, 2024
1 parent d0a557e commit 13a7417
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lidar_visualizer/visualizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def rewind(self):

def update_pbar(self):
self.pbar.n = self.idx % self.n_scans
self.pbar.set_description_str(self.current_filename)
self.pbar.set_description_str(self._get_current_filename(self.pbar.n))
self.pbar.refresh()

# Private Interaface ---------------------------------------------------------------------------
Expand Down

0 comments on commit 13a7417

Please sign in to comment.