Skip to content

Commit

Permalink
Merge pull request #24 from BramDevlaminck/empty_annotation_filter
Browse files Browse the repository at this point in the history
filter away empty annotation string
  • Loading branch information
BramDevlaminck authored May 14, 2024
2 parents c75911b + 8ae56af commit 01bfc13
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions sa-mappings/src/functionality.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ impl FunctionAggregator {
prot.get_functional_annotations()
.split(';')
.map(|ann| ann.to_string())
.filter(|s| !s.is_empty())
.collect()
)
.collect::<Vec<Vec<String>>>()
Expand Down

0 comments on commit 01bfc13

Please sign in to comment.