From de8326d00dffdb500c02839a98330b869c2457f3 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Sat, 22 Dec 2018 09:28:48 -0800 Subject: Trim trailing white space throughout the project Many editors clean up trailing white space on save. By removing it all in one go, it helps keep future diffs cleaner by avoiding spurious white space changes on unrelated lines. --- examples/searchParserAppDemo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/searchParserAppDemo.py') diff --git a/examples/searchParserAppDemo.py b/examples/searchParserAppDemo.py index 021428d..d1bf8ba 100644 --- a/examples/searchParserAppDemo.py +++ b/examples/searchParserAppDemo.py @@ -3,7 +3,7 @@ from searchparser import SearchQueryParser products = [ "grape juice", "grape jelly", "orange juice", "orange jujubees", "strawberry jam", "prune juice", "prune butter", "orange marmalade", "grapefruit juice" ] - + class FruitSearchParser(SearchQueryParser): def GetWord(self, word): return { p for p in products if p.startswith(word + " ") } -- cgit v1.2.1