Skip to content

Commit

Permalink
Add missing function core_path argument
Browse files Browse the repository at this point in the history
  • Loading branch information
jasongrout committed Jan 29, 2021
1 parent 4f7da97 commit bbfc6b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyterlab/federated_labextensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def build_labextension(path, logger=None, development=False, static_url=None, so
subprocess.check_call(arguments, cwd=ext_path)


def watch_labextension(path, labextensions_path, logger=None, development=False, source_map=False):
def watch_labextension(path, labextensions_path, logger=None, development=False, source_map=False, core_path=None):
"""Watch a labextension in a given path"""
if core_path is None:
core_path = osp.join(HERE, 'staging')
Expand Down

0 comments on commit bbfc6b9

Please sign in to comment.