Skip to content

Commit 1ebe966

Browse files
committed
py-fmt
1 parent d35c8c7 commit 1ebe966

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

rerun_py/rerun_sdk/rerun/blueprint/api.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -493,9 +493,7 @@ def _log_to_stream(self, stream: RecordingStream) -> None:
493493
stream.log(self.blueprint_path(), arch) # type: ignore[attr-defined]
494494

495495
if self.time is not None:
496-
static_arch = TimePanelBlueprint(
497-
time=self.time
498-
)
496+
static_arch = TimePanelBlueprint(time=self.time)
499497

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

rerun_py/rerun_sdk/rerun/recording_stream.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
import rerun as rr
1313
from rerun import bindings
14-
from rerun_bindings import ChunkBatcherConfig
1514

1615
if TYPE_CHECKING:
1716
from collections.abc import Iterable
@@ -24,6 +23,7 @@
2423
from rerun import AsComponents, BlueprintLike, ComponentColumn, DescribedComponentBatch
2524
from rerun.memory import MemoryRecording
2625
from rerun.sinks import LogSinkLike
26+
from rerun_bindings import ChunkBatcherConfig
2727

2828
from ._send_columns import TimeColumnLike
2929

rerun_py/rerun_sdk/rerun/time.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@
44
from typing import TYPE_CHECKING, overload
55

66
import numpy as np
7-
from typing_extensions import deprecated # type: ignore[misc, unused-ignore]
8-
97
import rerun_bindings as bindings
8+
from typing_extensions import deprecated # type: ignore[misc, unused-ignore]
109

1110
if TYPE_CHECKING:
1211
from rerun.recording_stream import RecordingStream

0 commit comments

Comments
 (0)