Skip to content

Commit 589c8e9

Browse files
author
Namio Evangelista Cavalcante Sousa
committed
UPD: Remoção de lixo na documentação
1 parent 2355c07 commit 589c8e9

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

bradocs4py/cnpj.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def __init__(self, arg): # type: (str)
1515

1616
def __str__(self):
1717
"""
18-
Will format an adequately formatted numbers-only CNPJ string, adding in standard formatting visual
18+
Will format an adequately formatted numbers-only CNPJ string, adding in standard formatting visual
1919
aid symbols for display.
2020
If CNPJ string is shorten that 14 digits or contains non-digits characters, returns the raw value
2121
CNPJ string unformatted.
@@ -32,7 +32,7 @@ def __str__(self):
3232
@property
3333
def isValid(self):
3434
"""
35-
Returns whether or not the verifying checksum digits of the given `cnpj` match it's base number.
35+
Returns whether or not the verifying checksum digits of the given `cnpj` match it's base number.
3636
Input should be a digit string of proper length.
3737
"""
3838
return ValidadorCnpj.validar(self)
@@ -60,7 +60,7 @@ def __validarStr(self, arg): # type: (str) -> bool
6060

6161
def __hashDigit(self, cnpj, position): # type: (str, int) -> int
6262
"""
63-
Will compute the given `position` checksum digit for the `cnpj` input. The input needs to contain
63+
Will compute the given `position` checksum digit for the `cnpj` input. The input needs to contain
6464
all elements previous to `position` else computation will yield the wrong result.
6565
"""
6666

@@ -85,7 +85,7 @@ class GeradorCnpj(object):
8585

8686
def __hashdigit(self, cnpj, position):
8787
"""
88-
Will compute the given `position` checksum digit for the `cnpj` input. The input needs to contain
88+
Will compute the given `position` checksum digit for the `cnpj` input. The input needs to contain
8989
all elements previous to `position` else computation will yield the wrong result.
9090
"""
9191

@@ -96,7 +96,7 @@ def __hashdigit(self, cnpj, position):
9696

9797
def __checksum(self, basenum):
9898
"""
99-
Will compute the checksum digits for a given CNPJ base number. `basenum` needs to be a digit-string
99+
Will compute the checksum digits for a given CNPJ base number. `basenum` needs to be a digit-string
100100
of adequate length.
101101
"""
102102

@@ -108,7 +108,7 @@ def __checksum(self, basenum):
108108
@staticmethod
109109
def gerar(branch = 1): # type: (int) -> Cnpj
110110
"""
111-
Generates a random valid CNPJ digit string. An optional branch number parameter can be given,
111+
Generates a random valid CNPJ digit string. An optional branch number parameter can be given,
112112
it defaults to 1.
113113
"""
114114

@@ -121,4 +121,4 @@ def gerar(branch = 1): # type: (int) -> Cnpj
121121

122122
gerador = GeradorCnpj()
123123

124-
return Cnpj(base + gerador.__checksum(base))
124+
return Cnpj(base + gerador.__checksum(base))

0 commit comments

Comments
 (0)