Allow the exact term too!

This commit is contained in:
Daoud Clarke 2021-03-22 21:31:49 +00:00
parent d3ae0e00a2
commit 0c5bc061ae

2
app.py
View file

@ -27,7 +27,7 @@ def complete_term(term):
query = f"""
SELECT term
FROM terms
WHERE term > ?
WHERE term >= ?
ORDER BY term
LIMIT 1
"""