Compare commits
1 Commits
ed34d22825
...
e478cae165
Author | SHA1 | Date |
---|---|---|
Nikolai | e478cae165 |
|
@ -2,6 +2,7 @@
|
||||||
Membership query interface
|
Membership query interface
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
from _pytest.python_api import raises
|
||||||
from sqlalchemy import select, func
|
from sqlalchemy import select, func
|
||||||
|
|
||||||
from amanuensis.db import DbContext, Membership
|
from amanuensis.db import DbContext, Membership
|
||||||
|
@ -41,7 +42,8 @@ def create(
|
||||||
lex: Lexicon = db(
|
lex: Lexicon = db(
|
||||||
select(Lexicon).where(Lexicon.id == lexicon_id)
|
select(Lexicon).where(Lexicon.id == lexicon_id)
|
||||||
).scalar_one_or_none()
|
).scalar_one_or_none()
|
||||||
assert lex, "could not find lexicon"
|
if not lex:
|
||||||
|
raise ArgumentError("could not find lexicon")
|
||||||
|
|
||||||
# Verify lexicon is joinable
|
# Verify lexicon is joinable
|
||||||
if not lex.joinable:
|
if not lex.joinable:
|
||||||
|
|
Loading…
Reference in New Issue