Skip to content

Commit

Permalink
Fix: Erroneous pymodule function for equivalence.
Browse files Browse the repository at this point in the history
  • Loading branch information
raynelfss committed Aug 6, 2024
1 parent c48f0da commit d12dee6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/accelerate/src/equivalence.rs
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,7 @@ where
}

#[pymodule]
pub fn equivalence(_py: Python, m: &Bound<'_, PyModule>) -> PyResult<()> {
pub fn equivalence(m: &Bound<'_, PyModule>) -> PyResult<()> {
m.add_class::<EquivalenceLibrary>()?;
m.add_class::<NodeData>()?;
m.add_class::<EdgeData>()?;
Expand Down

0 comments on commit d12dee6

Please sign in to comment.