Skip to content

Commit

Permalink
Use json5 typings (#441)
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 authored Mar 2, 2024
1 parent fed4b2a commit 91a0816
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jupyterlab_server/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from os.path import join as pjoin
from typing import Any

import json5 # type:ignore[import-untyped]
import json5
from jupyter_core.paths import SYSTEM_CONFIG_PATH, jupyter_config_dir, jupyter_path
from jupyter_server.services.config.manager import ConfigManager, recursive_update
from jupyter_server.utils import url_path_join as ujoin
Expand Down
2 changes: 1 addition & 1 deletion jupyterlab_server/settings_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from glob import glob
from typing import Any

import json5 # type:ignore[import-untyped]
import json5
from jsonschema import Draft7Validator as Validator
from jsonschema import ValidationError
from jupyter_server import _tz as tz
Expand Down

0 comments on commit 91a0816

Please sign in to comment.