From 76f5222ec7290f04e5373000b2dae5eb9cf8ed2d Mon Sep 17 00:00:00 2001 From: "Joe S. Boyle" Date: Tue, 7 Mar 2023 16:05:31 +0000 Subject: [PATCH] Remove unused 'msg' var --- Lib/email/feedparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/email/feedparser.py b/Lib/email/feedparser.py index 97d3f5144d606f..4aff2963fa2f05 100644 --- a/Lib/email/feedparser.py +++ b/Lib/email/feedparser.py @@ -266,7 +266,7 @@ def _parsegen(self): yield NeedMoreData continue break - msg = self._pop_message() + self._pop_message() # We need to pop the EOF matcher in order to tell if we're at # the end of the current file, not the end of the last block # of message headers.