@@ -15,7 +15,7 @@ def __init__(self, arg): # type: (str)
15
15
16
16
def __str__ (self ):
17
17
"""
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
19
19
aid symbols for display.
20
20
If CNPJ string is shorten that 14 digits or contains non-digits characters, returns the raw value
21
21
CNPJ string unformatted.
@@ -32,7 +32,7 @@ def __str__(self):
32
32
@property
33
33
def isValid (self ):
34
34
"""
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.
36
36
Input should be a digit string of proper length.
37
37
"""
38
38
return ValidadorCnpj .validar (self )
@@ -60,7 +60,7 @@ def __validarStr(self, arg): # type: (str) -> bool
60
60
61
61
def __hashDigit (self , cnpj , position ): # type: (str, int) -> int
62
62
"""
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
64
64
all elements previous to `position` else computation will yield the wrong result.
65
65
"""
66
66
@@ -85,7 +85,7 @@ class GeradorCnpj(object):
85
85
86
86
def __hashdigit (self , cnpj , position ):
87
87
"""
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
89
89
all elements previous to `position` else computation will yield the wrong result.
90
90
"""
91
91
@@ -96,7 +96,7 @@ def __hashdigit(self, cnpj, position):
96
96
97
97
def __checksum (self , basenum ):
98
98
"""
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
100
100
of adequate length.
101
101
"""
102
102
@@ -108,7 +108,7 @@ def __checksum(self, basenum):
108
108
@staticmethod
109
109
def gerar (branch = 1 ): # type: (int) -> Cnpj
110
110
"""
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,
112
112
it defaults to 1.
113
113
"""
114
114
@@ -121,4 +121,4 @@ def gerar(branch = 1): # type: (int) -> Cnpj
121
121
122
122
gerador = GeradorCnpj ()
123
123
124
- return Cnpj (base + gerador .__checksum (base ))
124
+ return Cnpj (base + gerador .__checksum (base ))
0 commit comments