Skip to content

Commit ef0e788

Browse files
committed
lint
1 parent c3c543b commit ef0e788

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/utils/password_encoder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
class PasswordEncoder:
55
def __init__(self):
66
self.context = CryptContext(schemes=["bcrypt"], deprecated="auto")
7-
7+
88
async def hash(self, password: str) -> str:
99
return self.context.hash(password)
10-
10+
1111
async def verify(self, password: str, hashed_pass: str) -> bool:
1212
return self.context.verify(password, hashed_pass)

0 commit comments

Comments
 (0)