Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions sounder/sounder.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ def get_reserved_sub_words():
"what", "where", "which", "how", "when", "who",
"is", "are", "makes", "made", "make", "did", "do",
"to", "the", "of", "from", "against", "and", "or",
"you", "me", "we", "us", "your", "my", "mine", 'yours',
"you", "me", "we", "us", "your", "my", "mine", "yours",
"could", "would", "may", "might", "let", "possibly",
'tell', "give", "told", "gave", "know", "knew",
'a', 'am', 'an', 'i', 'like', 'has', 'have', 'need',
'will', 'be', "this", 'that', "for"
"tell", "give", "told", "gave", "know", "knew",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

so proud

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

revolutionary! This warrants a scholarship!

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Where is Linux foundation when you need them

"a", "am", "an", "i", "like", "has", "have", "need",
"will", "be", "this", "that", "for"
}

def filter(self, query, reserved_sub_words=None):
Expand Down