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 c9ec0fc commit e6dd707Copy full SHA for e6dd707
jupyter_server/services/kernelspecs/monitors/polling_monitor.py
@@ -4,6 +4,7 @@
4
import json
5
import os
6
from hashlib import md5
7
+from typing import Dict
8
9
from overrides import overrides
10
from traitlets.traitlets import Float, default
@@ -29,7 +30,7 @@ def _interval_default(self):
29
30
31
# Keep track of hash values for each entry placed into the cache. This will lessen
32
# the churn and noise when publishing events
- hash_values: dict[str, str]
33
+ hash_values: Dict[str, str]
34
35
def __init__(self, kernel_spec_cache: KernelSpecCache, **kwargs):
36
"""Initialize the handler."""
0 commit comments