We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 023afaf commit 5464226Copy full SHA for 5464226
jupyter_ydoc/ybasedoc.py
@@ -2,7 +2,7 @@
2
# Distributed under the terms of the Modified BSD License.
3
4
from abc import ABC, abstractmethod
5
-from typing import Any, Callable, Optional
+from typing import Any, Callable, Dict, Optional
6
7
from pycrdt import Doc, Map, Subscription, UndoManager
8
@@ -17,7 +17,7 @@ class YBaseDoc(ABC):
17
18
_ydoc: Doc
19
_ystate: Map
20
- _subscriptions: dict[Any, Subscription]
+ _subscriptions: Dict[Any, Subscription]
21
_undo_manager: UndoManager
22
23
def __init__(self, ydoc: Optional[Doc] = None):
0 commit comments