Split value conversion into a separate module

This commit is contained in:
Simon Hausmann 2023-12-13 23:56:39 +01:00 committed by Simon Hausmann
parent 10d6aa199c
commit 644ebbb2aa
3 changed files with 60 additions and 54 deletions

View file

@ -4,6 +4,7 @@
mod interpreter;
use interpreter::{ComponentCompiler, PyDiagnostic, PyDiagnosticLevel, PyValueType};
mod errors;
mod value;
use pyo3::prelude::*;