We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41fe441 commit d278130Copy full SHA for d278130
uid2_client/input_util.py
@@ -22,17 +22,18 @@ def is_phone_number_normalized(phone_number):
22
return min_phone_number_digits <= total_digits <= max_phone_number_digits
23
24
25
+class EmailParsingState:
26
+ Starting = 1
27
+ Pre = 2
28
+ SubDomain = 3
29
+
30
31
def normalize_email_string(email):
32
pre_sb = []
33
pre_sb_specialized = []
34
sb = []
35
ws_buffer = []
36
- class EmailParsingState:
- Starting = 1
- Pre = 2
- SubDomain = 3
-
37
parsing_state = EmailParsingState.Starting
38
39
in_extension = False
0 commit comments