Skip to content

Commit

Permalink
Moved all files to the i18n directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
tabbols95 committed Oct 29, 2024
1 parent 1bc9f46 commit 5808f70
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Empty file added src/__init__.py
Empty file.
5 changes: 1 addition & 4 deletions src/validators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
from .url import url
from .utils import ValidationError, validator
from .uuid import uuid
from .inn import inn

__all__ = (
# ...
Expand Down Expand Up @@ -105,11 +104,9 @@
"url",
# ...
"uuid",
# ...
"inn",
# utils
"ValidationError",
"validator",
)

__version__ = "0.35.0"
__version__ = "0.34.0"
3 changes: 3 additions & 0 deletions src/validators/i18n/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from .fi import fi_business_id, fi_ssn
from .fr import fr_department, fr_ssn
from .ind import ind_aadhar, ind_pan
from .inn import inn as ru_inn

__all__ = (
"fi_business_id",
Expand All @@ -17,4 +18,6 @@
"fr_ssn",
"ind_aadhar",
"ind_pan",
# Russian Individual Tax Number
"ru_inn"
)
2 changes: 1 addition & 1 deletion src/validators/inn.py → src/validators/i18n/inn.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Inn."""

from .utils import validator
from src.validators.utils import validator


@validator
Expand Down

0 comments on commit 5808f70

Please sign in to comment.