Skip to content

Commit

Permalink
init shall not return a recording
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed May 15, 2023
1 parent d3afddb commit 8fcd9aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rerun_py/rerun_sdk/rerun/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def init(
spawn: bool = False,
default_enabled: bool = True,
strict: bool = False,
) -> RecordingStream:
) -> None:
"""
Initialize the Rerun SDK with a user-chosen application id (name).
Expand Down Expand Up @@ -180,7 +180,7 @@ def init(

_strict_mode = strict

return new_recording(
new_recording(
application_id,
recording_id,
True, # make_default
Expand Down

0 comments on commit 8fcd9aa

Please sign in to comment.