Skip to content

Commit

Permalink
record.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelzw authored Oct 26, 2024
1 parent 4c9e89e commit 3d1ab64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py-rattler/src/record.rs
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ impl PyRecord {
.into_iter()
.map(PyRecord::try_from)
.collect::<PyResult<Vec<_>>>()?;
Ok(PackageRecord::validate_package_records(records))
PackageRecord::validate_package_records(records)
}

/// Sorts the records topologically.
Expand All @@ -449,6 +449,6 @@ impl PyRecord {
.into_iter()
.map(PyRecord::try_from)
.collect::<PyResult<Vec<_>>>()?;
PackageRecord::sort_topologically(records)
Ok(PackageRecord::sort_topologically(records))
}
}

0 comments on commit 3d1ab64

Please sign in to comment.