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 cbe13d3 commit 15eaa80Copy full SHA for 15eaa80
src/validators/__init__.py
@@ -23,7 +23,7 @@
23
fr_ssn,
24
ind_aadhar,
25
ind_pan,
26
- ru_inn
+ ru_inn,
27
)
28
from .iban import iban
29
from .ip_address import ipv4, ipv6
src/validators/i18n/es.py
@@ -1,7 +1,7 @@
1
"""Spain."""
2
3
# standard
4
-from typing import Dict, Set
+from typing import Dict
5
6
# local
7
from validators.utils import validator
src/validators/uri.py
@@ -68,7 +68,7 @@ def uri(value: str, /):
68
69
# email
70
if value.startswith("mailto:"):
71
- return email(value[len("mailto:"):])
+ return email(value[len("mailto:") :])
72
73
# file
74
if value.startswith("file:"):
0 commit comments