Skip to content

Commit

Permalink
not return None in parsePfamPDBs end
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmkrieger committed Nov 5, 2023
1 parent 46470eb commit 42d9087
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prody/database/pfam.py
Original file line number Diff line number Diff line change
Expand Up @@ -432,5 +432,5 @@ def parsePfamPDBs(query, data=[], **kwargs):
else:
LOGGER.warn('data should be a list in order to get output')

return results
return [result for result in results if result is not None]

0 comments on commit 42d9087

Please sign in to comment.