We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 386b820 + 6ff16de commit 8a57288Copy full SHA for 8a57288
README.md
@@ -154,9 +154,9 @@ python -m unittest
154
Lint
155
-----------
156
157
-Instalação: `pip install ruff`
158
-Checar lint: `ruff check .`
159
-Formatar: `ruff format .`
+* Instalação: `pip install ruff`
+* Checar lint: `ruff check .`
+* Formatar: `ruff format .`
160
161
162
Documentação
pynfe/utils/descompactar.py
@@ -26,5 +26,5 @@ def descompacta(stringZipada):
26
texto = zip.read()
27
arq.close()
28
zip.close()
29
- descompactado = texto.decode("utf-8")
+ descompactado = texto.decode("utf-8").encode()
30
return etree.fromstring(descompactado)
0 commit comments