Skip to content

Commit e8a1c6f

Browse files
committed
Type annotations
1 parent 4f3f6e0 commit e8a1c6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rerun_py/rerun_sdk/rerun/notebook.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def __init__(
8383
callback=self._flush_hook,
8484
)
8585

86-
def display(self, block_until_ready=True) -> None:
86+
def display(self, block_until_ready: bool = True) -> None:
8787
"""
8888
Display the viewer in the notebook cell immediately.
8989
@@ -119,7 +119,7 @@ def notebook_show(
119119
height: int = DEFAULT_HEIGHT,
120120
blueprint: BlueprintLike | None = None,
121121
recording: RecordingStream | None = None,
122-
):
122+
) -> None:
123123
"""
124124
Output the Rerun viewer in a notebook using IPython [IPython.core.display.HTML][].
125125

0 commit comments

Comments
 (0)