From aa3a7fa4470628cfc01a69544b7c8417deb27192 Mon Sep 17 00:00:00 2001 From: Login <84237895+The-Login@users.noreply.github.com> Date: Sun, 3 Mar 2024 17:40:59 +0100 Subject: [PATCH] Remove unused NEWLINE global (#417) --- aiosmtpd/smtp.py | 1 - 1 file changed, 1 deletion(-) diff --git a/aiosmtpd/smtp.py b/aiosmtpd/smtp.py index 00902c1e..c6605a56 100644 --- a/aiosmtpd/smtp.py +++ b/aiosmtpd/smtp.py @@ -87,7 +87,6 @@ class _DataState(enum.Enum): EMPTY_BARR = bytearray() EMPTYBYTES = b'' MISSING = _Missing.MISSING -NEWLINE = '\r\n' VALID_AUTHMECH = re.compile(r"[A-Z0-9_-]+\Z") # https://tools.ietf.org/html/rfc3207.html#page-3