Skip to content

Commit

Permalink
fix issue with sort (Pometry#1533)
Browse files Browse the repository at this point in the history
  • Loading branch information
Haaroon authored Mar 6, 2024
1 parent b30d663 commit c3a3713
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion raphtory/src/python/graph/properties/props.rs
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ impl PyPropsList {
pub fn keys(&self) -> Vec<ArcStr> {
self.iter()
// FIXME: Still have to clone all those strings which sucks
.map(|p| p.keys().map(|k| k.clone()).collect_vec())
.map(|p| p.keys().map(|k| k.clone()).sorted().collect_vec())
.kmerge()
.dedup()
.collect()
Expand Down

0 comments on commit c3a3713

Please sign in to comment.