File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ use std::fmt::Write;
1616use std:: sync:: Arc ;
1717
1818mod convert;
19- pub use convert:: * ;
19+ pub ( crate ) use convert:: * ;
2020
2121pub struct PythonExecutionContext {
2222 pub event_loop : Py < PyAny > ,
@@ -131,7 +131,7 @@ pub struct RenderedSpec {
131131}
132132
133133#[ pyclass]
134- struct FlowLiveUpdaterUpdates ( execution:: FlowLiveUpdaterUpdates ) ;
134+ pub struct FlowLiveUpdaterUpdates ( execution:: FlowLiveUpdaterUpdates ) ;
135135
136136#[ pymethods]
137137impl FlowLiveUpdaterUpdates {
@@ -147,7 +147,7 @@ impl FlowLiveUpdaterUpdates {
147147}
148148
149149#[ pyclass]
150- struct FlowLiveUpdater ( pub Arc < execution:: FlowLiveUpdater > ) ;
150+ pub struct FlowLiveUpdater ( pub Arc < execution:: FlowLiveUpdater > ) ;
151151
152152#[ pymethods]
153153impl FlowLiveUpdater {
You can’t perform that action at this time.
0 commit comments