Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jupyter-server/pycrdt-websocket
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 15e69015f7e0a75859ab07fef89f05fe588e9a86
Choose a base ref
..
head repository: jupyter-server/pycrdt-websocket
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a35810d9d412e3a053db285113a3c7197ca8b855
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 pycrdt_websocket/yroom.py
4 changes: 2 additions & 2 deletions pycrdt_websocket/yroom.py
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ class YRoom:
_stopped: Event
__start_lock: Lock | None
_subscription: Subscription | None

def __init__(
self,
ready: bool = True,
@@ -86,7 +86,7 @@ def __init__(
self._started = None
self.__start_lock = None
self._subscription = None

@property
def _start_lock(self) -> Lock:
if self.__start_lock is None: