Skip to content

Commit

Permalink
I love kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Sep 28, 2023
1 parent f6c9382 commit 1cc3fa7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rerun_py/rerun_sdk/rerun/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ def _init_recording_stream() -> None:


def init(
*,
application_id: str,
recording_id: str | None = None,
spawn: bool = False,
Expand Down Expand Up @@ -302,7 +303,7 @@ def init(

if init_logging:
new_recording(
application_id,
application_id=application_id,
recording_id=recording_id,
make_default=True,
make_thread_default=False,
Expand All @@ -327,6 +328,7 @@ def init(


def new_recording(
*,
application_id: str,
recording_id: str | None = None,
make_default: bool = False,
Expand Down

0 comments on commit 1cc3fa7

Please sign in to comment.