We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c184f5d commit ba81443Copy full SHA for ba81443
rerun_py/rerun_sdk/rerun/blueprint/api.py
@@ -492,7 +492,7 @@ def _log_to_stream(self, stream: RecordingStream) -> None:
492
493
stream.log(self.blueprint_path(), arch) # type: ignore[attr-defined]
494
495
- if self.time is not None:
+ if hasattr(self, "time"):
496
static_arch = TimePanelBlueprint(time=self.time)
497
498
stream.log(self.blueprint_path(), static_arch, static=True)
0 commit comments