diff --git a/nemo-python/src/lib.rs b/nemo-python/src/lib.rs index a179d3e15..7b31dcff7 100644 --- a/nemo-python/src/lib.rs +++ b/nemo-python/src/lib.rs @@ -245,8 +245,6 @@ impl NemoTrace { fn assignement_to_dict(assignment: &HashMap, py: Python) -> PyResult { 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)?)?; }