Skip to content

Commit

Permalink
use typing package for python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
echarles committed Jun 9, 2022
1 parent 9183e93 commit 835753f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipykernel/kernelbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class Kernel(SingletonConfigurable):
# attribute to override with a GUI
eventloop = Any(None)

processes: dict[str, psutil.Process] = {}
processes: t.Dict[str, psutil.Process] = {}

@observe("eventloop")
def _update_eventloop(self, change):
Expand Down

0 comments on commit 835753f

Please sign in to comment.