Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/py/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use std::fmt::Write;
use std::sync::Arc;

mod convert;
pub use convert::*;
pub(crate) use convert::*;

pub struct PythonExecutionContext {
pub event_loop: Py<PyAny>,
Expand Down Expand Up @@ -131,7 +131,7 @@ pub struct RenderedSpec {
}

#[pyclass]
struct FlowLiveUpdaterUpdates(execution::FlowLiveUpdaterUpdates);
pub struct FlowLiveUpdaterUpdates(execution::FlowLiveUpdaterUpdates);

#[pymethods]
impl FlowLiveUpdaterUpdates {
Expand All @@ -147,7 +147,7 @@ impl FlowLiveUpdaterUpdates {
}

#[pyclass]
struct FlowLiveUpdater(pub Arc<execution::FlowLiveUpdater>);
pub struct FlowLiveUpdater(pub Arc<execution::FlowLiveUpdater>);

#[pymethods]
impl FlowLiveUpdater {
Expand Down
Loading