diff --git a/joy/library.py b/joy/library.py index 49b6699..90139cc 100644 --- a/joy/library.py +++ b/joy/library.py @@ -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) #