When loading definitions ignore lines w/o "==".

This commit is contained in:
Simon Forman 2018-04-21 11:40:00 -07:00
parent f454014248
commit 4064ac1d23
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ class DefinitionWrapper(FunctionWrapper):
def _text_to_defs(text):
return filter(None, (line.strip() for line in text.splitlines()))
return (line.strip() for line in text.splitlines() if '==' in line)
#