浏览代码

Merge pull request #2100 from cjh1/add-missing-imports

Add missing imports
Steven Silvester 8 年之前
父节点
当前提交
7118c7cc43
共有 1 个文件被更改,包括 1 次插入3 次删除
  1. 1 3
      jupyterlab/labextensions.py

+ 1 - 3
jupyterlab/labextensions.py

@@ -9,6 +9,7 @@ import os
 import sys
 
 from jupyter_core.application import JupyterApp, base_flags
+
 from traitlets import Bool
 
 from ._version import __version__
@@ -29,9 +30,6 @@ class BaseExtensionApp(JupyterApp):
     version = __version__
     flags = flags
 
-    lab_config_dir = Unicode(ENV_CONFIG_PATH[0], config=True,
-        help="The lab configuration directory")
-
     should_build = Bool(True, config=True,
         help="Whether to build the app after the action")