pub type PythonPackageRoot = Option<String>;Expand description
The top-level Python package name for absolute import resolution.
e.g. for marimo, this is “marimo” — so from marimo._runtime.dataflow import X
resolves to marimo/_runtime/dataflow.py.
Aliased Type§
pub enum PythonPackageRoot {
None,
Some(String),
}