Skip to content

Commit

Permalink
Adicionado remove_symbols a lista __all__
Browse files Browse the repository at this point in the history
  • Loading branch information
vmagueta committed Oct 24, 2024
1 parent df82998 commit 4e17a25
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions brutils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,19 @@
# CPF Imports
from brutils.cpf import (
format_cpf,
remove_symbols,
remove_symbols_cpf,
)
from brutils.cpf import (
generate as generate_cpf,
)
from brutils.cpf import (
is_valid as is_valid_cpf,
)
from brutils.cpf import (
remove_symbols as remove_symbols,
)
from brutils.cpf import (
remove_symbols_cpf as remove_symbols_from_cpf,
)

# Email Import
from brutils.email import is_valid as is_valid_email
Expand Down Expand Up @@ -139,7 +143,8 @@
"format_cpf",
"generate_cpf",
"is_valid_cpf",
"remove_symbols_cpf",
"remove_symbols",
"remove_symbols_from_cpf",
# Email
"is_valid_email",
# Legal Process
Expand Down

0 comments on commit 4e17a25

Please sign in to comment.