Skip to content

Commit 9db5127

Browse files
committed
chore: fixes formatting
1 parent 640c630 commit 9db5127

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

src/labs/models/user.py

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,27 @@
1212

1313
from sqlalchemy import event
1414
from sqlalchemy.exc import NoResultFound
15-
from sqlalchemy.orm import Mapped, mapped_column
15+
from sqlalchemy.orm import (
16+
Mapped,
17+
mapped_column
18+
)
19+
1620
from sqlalchemy.ext.asyncio import async_object_session
1721

1822
# OTP helpers from pyotp
19-
from pyotp import TOTP, random_base32
23+
from pyotp import (
24+
TOTP,
25+
random_base32
26+
)
2027

2128
from ..db import Base
2229
from ..settings import settings
23-
from .utils import DateTimeMixin, IdentifierMixin,\
24-
ModelCRUDMixin, timestamp
30+
from .utils import (
31+
DateTimeMixin,
32+
IdentifierMixin,
33+
ModelCRUDMixin,
34+
timestamp
35+
)
2536

2637
from ..utils.auth import hash_password, verify_password
2738

0 commit comments

Comments
 (0)