Skip to content

Commit 361bd90

Browse files
committed
use typing package for python 3.8
1 parent 3ceabee commit 361bd90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ipykernel/kernelbase.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class Kernel(SingletonConfigurable):
7676
# attribute to override with a GUI
7777
eventloop = Any(None)
7878

79-
processes: dict[str, psutil.Process] = {}
79+
processes: t.Dict[str, psutil.Process] = {}
8080

8181
@observe("eventloop")
8282
def _update_eventloop(self, change):

0 commit comments

Comments
 (0)