Skip to content

Commit

Permalink
fix: Made Client.subscribe(on_signals=) optional
Browse files Browse the repository at this point in the history
  • Loading branch information
jrask committed Jan 29, 2024
1 parent a77f734 commit 3d46c19
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def subscribe(
self,
signal_names: List[str],
namespaces: List[str],
on_signals: Callable[[SignalsInFrame], None],
on_signals: Optional[Callable[[SignalsInFrame], None]] = None,
changed_values_only: bool = True,
):
if on_signals is None and self.on_signals is None:
Expand Down

0 comments on commit 3d46c19

Please sign in to comment.