Skip to content

Commit 8ad1f8a

Browse files
committed
ci
1 parent 26c170f commit 8ad1f8a

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

rerun_py/rerun_bindings/rerun_bindings.pyi

+8
Original file line numberDiff line numberDiff line change
@@ -881,6 +881,14 @@ def send_blueprint(
881881
) -> None:
882882
"""Send a blueprint to the given recording stream."""
883883

884+
def send_recording(rrd: Recording, recording: Optional[PyRecordingStream] = None) -> None:
885+
"""
886+
Send all chunks from a [`PyRecording`] to the given recording stream.
887+
888+
.. warning::
889+
⚠️ This API is experimental and may change or be removed in future versions! ⚠️
890+
"""
891+
884892
#
885893
# misc
886894
#

rerun_py/src/python_bridge.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1344,7 +1344,7 @@ fn send_blueprint(
13441344
}
13451345
}
13461346

1347-
/// Send all chunks from a `Recording`` to the given recording stream.
1347+
/// Send all chunks from a [`PyRecording`] to the given recording stream.
13481348
///
13491349
/// ⚠️ This API is experimental and may change or be removed in future versions! ⚠️
13501350
#[pyfunction]

0 commit comments

Comments
 (0)