From ae2bc2c2d8f7af2551de1e4cb60228fdb047aea4 Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Thu, 20 Apr 2017 13:57:14 +0200 Subject: [PATCH] Applying flake8 to pp_lib/mailaddress.py --- pp_lib/mailaddress.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pp_lib/mailaddress.py b/pp_lib/mailaddress.py index f0e6d37..6f915b2 100644 --- a/pp_lib/mailaddress.py +++ b/pp_lib/mailaddress.py @@ -9,8 +9,6 @@ from __future__ import absolute_import # Standard modules -import sys -import os import logging import re @@ -19,7 +17,7 @@ from .errors import InvalidMailAddressError from .common import to_str -__version__ = '0.3.1' +__version__ = '0.3.2' log = logging.getLogger(__name__) @@ -154,7 +152,6 @@ class MailAddress(object): out += ", ".join(fields) + ")>" return out - # ------------------------------------------------------------------------- def __hash__(self): return hash(str(self).lower()) -- 2.39.5