Skip to content

Commit 1d17125

Browse files
committed
fix py37 syntax
1 parent 830453f commit 1d17125

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

jupyter_client/kernelspecapp.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import json
55
import os.path
66
import sys
7+
import typing as t
78

89
from jupyter_core.application import base_aliases
910
from jupyter_core.application import base_flags
@@ -309,8 +310,8 @@ class KernelSpecApp(Application):
309310
}
310311
)
311312

312-
aliases: dict[str, object] = {}
313-
flags: dict[str, object] = {}
313+
aliases: t.Dict[str, object] = {}
314+
flags: t.Dict[str, object] = {}
314315

315316
def start(self):
316317
if self.subapp is None:

0 commit comments

Comments
 (0)