Skip to content

Commit 97b1214

Browse files
author
renzon
committed
Consertada pep8
1 parent 376bdac commit 97b1214

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

libpythonpro/spam/db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ def gerar_sessao(self):
2828
return Sessao()
2929

3030
def fechar(self):
31-
pass
31+
pass

libpythonpro/spam/modelos.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
class Usuario:
22
def __init__(self, nome):
33
self.nome = nome
4-
self.id = None
4+
self.id = None

libpythonpro/tests/test_spam/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ def sessao(conexao):
1717
sessao_obj = conexao.gerar_sessao()
1818
yield sessao_obj
1919
sessao_obj.roll_back()
20-
sessao_obj.fechar()
20+
sessao_obj.fechar()

0 commit comments

Comments
 (0)