Skip to content

Commit 15eaa80

Browse files
committed
chore: formatting
1 parent cbe13d3 commit 15eaa80

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/validators/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
fr_ssn,
2424
ind_aadhar,
2525
ind_pan,
26-
ru_inn
26+
ru_inn,
2727
)
2828
from .iban import iban
2929
from .ip_address import ipv4, ipv6

src/validators/i18n/es.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Spain."""
22

33
# standard
4-
from typing import Dict, Set
4+
from typing import Dict
55

66
# local
77
from validators.utils import validator

src/validators/uri.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def uri(value: str, /):
6868

6969
# email
7070
if value.startswith("mailto:"):
71-
return email(value[len("mailto:"):])
71+
return email(value[len("mailto:") :])
7272

7373
# file
7474
if value.startswith("file:"):

0 commit comments

Comments
 (0)