File tree Expand file tree Collapse file tree 2 files changed +13
-9
lines changed Expand file tree Collapse file tree 2 files changed +13
-9
lines changed Original file line number Diff line number Diff line change 9
9
.PHONY : lint
10
10
lint :
11
11
# python setup.py check -rms
12
- flake8 --ignore=E501,E126 email_validator tests
12
+ flake8 --ignore=E501,E126,W503 email_validator tests
13
13
14
14
.PHONY : test
15
15
test :
Original file line number Diff line number Diff line change @@ -142,14 +142,18 @@ def __getitem__(self, key):
142
142
143
143
"""Tests use this."""
144
144
def __eq__ (self , other ):
145
- if self .email == other .email and self .local_part == other .local_part and self .domain == other .domain \
146
- and self .ascii_email == other .ascii_email and self .ascii_local_part == other .ascii_local_part \
147
- and self .ascii_domain == other .ascii_domain \
148
- and self .smtputf8 == other .smtputf8 \
149
- and repr (sorted (self .mx ) if self .mx else self .mx ) == repr (sorted (other .mx ) if other .mx else other .mx ) \
150
- and self .mx_fallback_type == other .mx_fallback_type :
151
- return True
152
- return False
145
+ return (
146
+ self .email == other .email
147
+ and self .local_part == other .local_part
148
+ and self .domain == other .domain
149
+ and self .ascii_email == other .ascii_email
150
+ and self .ascii_local_part == other .ascii_local_part
151
+ and self .ascii_domain == other .ascii_domain
152
+ and self .smtputf8 == other .smtputf8
153
+ and repr (sorted (self .mx ) if self .mx else self .mx )
154
+ == repr (sorted (other .mx ) if other .mx else other .mx )
155
+ and self .mx_fallback_type == other .mx_fallback_type
156
+ )
153
157
154
158
"""This helps producing the README."""
155
159
def as_constructor (self ):
You can’t perform that action at this time.
0 commit comments