neuralworm commited on
Commit
6d08b4f
·
verified ·
1 Parent(s): 22317a4

Update bible.py

Browse files

Finde Revelation in Revelation

Files changed (1) hide show
  1. bible.py +1 -1
bible.py CHANGED
@@ -333,7 +333,7 @@ def find_shortest_bible_match(gematria_sum: int, db_file: str = 'bible.db') -> D
333
  cursor.execute('''
334
  SELECT words, book, chapter, verse, phrase_length, word_position
335
  FROM results
336
- WHERE gematria_sum = ? AND book = 'John'
337
  ORDER BY LENGTH(words) ASC
338
  LIMIT 1
339
  ''', (gematria_sum,))
 
333
  cursor.execute('''
334
  SELECT words, book, chapter, verse, phrase_length, word_position
335
  FROM results
336
+ WHERE gematria_sum = ? AND book = 'Revelation'
337
  ORDER BY LENGTH(words) ASC
338
  LIMIT 1
339
  ''', (gematria_sum,))