Remove unused variables (see #103)

This commit is contained in:
coderkun 2024-11-03 10:44:11 +01:00
commit bcfd17a8ae
5 changed files with 8 additions and 9 deletions

View file

@ -152,7 +152,7 @@ class CoverPanel(Gtk.Overlay):
# Load image and draw it
try:
self._cover_pixbuf = Utils.load_pixbuf(data)
except Exception as e:
except Exception:
self._logger.exception("Failed to set albumart")
self._cover_pixbuf = None
else: