Skip to content

Commit

Permalink
Fix: Make NoteData attributes public.
Browse files Browse the repository at this point in the history
  • Loading branch information
raynelfss committed Jul 19, 2024
1 parent 6772305 commit 1e44817
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/circuit/src/equivalence.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,9 @@ impl Display for Equivalence {
#[derive(Debug, Clone)]
pub struct NodeData {
#[pyo3(get)]
key: Key,
pub key: Key,
#[pyo3(get)]
equivs: Vec<Equivalence>,
pub equivs: Vec<Equivalence>,
}

#[pymethods]
Expand Down

0 comments on commit 1e44817

Please sign in to comment.