Skip to content

Commit

Permalink
remove outdated comment
Browse files Browse the repository at this point in the history
  • Loading branch information
matzemathics committed Nov 2, 2023
1 parent ecb4ecf commit 1f6232c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions nemo-python/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,6 @@ impl NemoTrace {
fn assignement_to_dict(assignment: &HashMap<Variable, Constant>, py: Python) -> PyResult<PyObject> {
let dict = PyDict::new(py);
for (variable, value) in assignment {
// TODO: value should be a constant, which can be converted using the
// `constant_to_python` function
dict.set_item(variable.to_string(), constant_to_python(py, value)?)?;
}

Expand Down

0 comments on commit 1f6232c

Please sign in to comment.