Skip to content

Commit 91a0816

Browse files
authored
Use json5 typings (#441)
1 parent fed4b2a commit 91a0816

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

jupyterlab_server/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from os.path import join as pjoin
1313
from typing import Any
1414

15-
import json5 # type:ignore[import-untyped]
15+
import json5
1616
from jupyter_core.paths import SYSTEM_CONFIG_PATH, jupyter_config_dir, jupyter_path
1717
from jupyter_server.services.config.manager import ConfigManager, recursive_update
1818
from jupyter_server.utils import url_path_join as ujoin

jupyterlab_server/settings_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from glob import glob
1010
from typing import Any
1111

12-
import json5 # type:ignore[import-untyped]
12+
import json5
1313
from jsonschema import Draft7Validator as Validator
1414
from jsonschema import ValidationError
1515
from jupyter_server import _tz as tz

0 commit comments

Comments
 (0)