mirror of https://github.com/logos-co/open-law.git
fix warning in test
This commit is contained in:
parent
80c7d1dcaa
commit
2556838a77
File diff suppressed because one or more lines are too long
|
@ -61,7 +61,7 @@ def edit_profile():
|
||||||
@bp.route("/<int:user_id>/profile")
|
@bp.route("/<int:user_id>/profile")
|
||||||
@login_required
|
@login_required
|
||||||
def profile(user_id: int):
|
def profile(user_id: int):
|
||||||
user: m.User = m.User.query.get(user_id)
|
user: m.User = db.session.get(m.User, user_id)
|
||||||
interpretations: m.Interpretation = m.Interpretation.query.filter_by(
|
interpretations: m.Interpretation = m.Interpretation.query.filter_by(
|
||||||
user_id=user_id
|
user_id=user_id
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue