Skip to content

Commit ba81443

Browse files
committed
Check if we have the time field
1 parent c184f5d commit ba81443

File tree

1 file changed

+1
-1
lines changed
  • rerun_py/rerun_sdk/rerun/blueprint

1 file changed

+1
-1
lines changed

rerun_py/rerun_sdk/rerun/blueprint/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ def _log_to_stream(self, stream: RecordingStream) -> None:
492492

493493
stream.log(self.blueprint_path(), arch) # type: ignore[attr-defined]
494494

495-
if self.time is not None:
495+
if hasattr(self, "time"):
496496
static_arch = TimePanelBlueprint(time=self.time)
497497

498498
stream.log(self.blueprint_path(), static_arch, static=True)

0 commit comments

Comments
 (0)