Skip to content

Commit 463d941

Browse files
committed
assign None to time
1 parent c184f5d commit 463d941

File tree

1 file changed

+2
-0
lines changed
  • rerun_py/rerun_sdk/rerun/blueprint

1 file changed

+2
-0
lines changed

rerun_py/rerun_sdk/rerun/blueprint/api.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -482,6 +482,8 @@ def __init__(
482482
self.time = to_nanos(duration_cursor)
483483
elif timestamp_cursor is not None:
484484
self.time = to_nanos_since_epoch(timestamp_cursor)
485+
else:
486+
self.time = None
485487

486488
def _log_to_stream(self, stream: RecordingStream) -> None:
487489
"""Internal method to convert to an archetype and log to the stream."""

0 commit comments

Comments
 (0)