Skip to content

Commit e6dd707

Browse files
committed
Fix typing issue
1 parent c9ec0fc commit e6dd707

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

jupyter_server/services/kernelspecs/monitors/polling_monitor.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import json
55
import os
66
from hashlib import md5
7+
from typing import Dict
78

89
from overrides import overrides
910
from traitlets.traitlets import Float, default
@@ -29,7 +30,7 @@ def _interval_default(self):
2930

3031
# Keep track of hash values for each entry placed into the cache. This will lessen
3132
# the churn and noise when publishing events
32-
hash_values: dict[str, str]
33+
hash_values: Dict[str, str]
3334

3435
def __init__(self, kernel_spec_cache: KernelSpecCache, **kwargs):
3536
"""Initialize the handler."""

0 commit comments

Comments
 (0)