From e4cb1a93becc9497188ca6aee9a556ef8ae50ed1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolfo=20Garc=C3=ADa=20Pe=C3=B1as=20=28kix=29?= Date: Sun, 30 Aug 2020 13:55:30 +0200 Subject: [PATCH] Removed unused variables These variables are not used --- offlineimap/folder/UIDMaps.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/offlineimap/folder/UIDMaps.py b/offlineimap/folder/UIDMaps.py index c858894..51e4970 100644 --- a/offlineimap/folder/UIDMaps.py +++ b/offlineimap/folder/UIDMaps.py @@ -152,11 +152,11 @@ class MappedIMAPFolder(IMAPFolder): ) try: del self.diskr2l[ruid] - except KeyError as e: + except KeyError: self.ui.warn(errorMessage.format(ruid)) try: del self.diskl2r[luid] - except KeyError as e: + except KeyError: self.ui.warn(errorMessage.format(ruid)) # Now, assign negative UIDs to local items.