Skip to content

Commit adcfa3c

Browse files
committed
Add missing license headers
1 parent d7155d6 commit adcfa3c

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

css/widget.css

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*-----------------------------------------------------------------------------
2+
| Copyright (c) ipylab contributors.
3+
| Distributed under the terms of the Modified BSD License.
4+
|----------------------------------------------------------------------------*/
5+
16
/* Default Split Handle Color*/
27
.jp-JupyterLuminoSplitPanelWidget .p-SplitPanel-handle {
38
background-color: var(--jp-border-color2);

ipylab/sessions.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
"""Expose current and all sessions to python kernel
2-
"""
1+
#!/usr/bin/env python
2+
# coding: utf-8
3+
4+
# Copyright (c) ipylab contributors.
5+
# Distributed under the terms of the Modified BSD License.
36

47
import asyncio
58

@@ -35,7 +38,7 @@ def _on_frontend_msg(self, _, content, buffers):
3538

3639
async def refresh_running(self):
3740
"""Force a call to refresh running sessions
38-
41+
3942
Resolved when `SessionManager.runnigSession` resolves
4043
"""
4144
self.send({"func": "refreshRunning"})

src/widgets/sessions.ts

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) ipylab contributors
2+
// Distributed under the terms of the Modified BSD License.
3+
14
// SessionManager exposes `JupyterLab.serviceManager.sessions` to user python kernel
25

36
import { SessionManager } from '@jupyterlab/services';

0 commit comments

Comments
 (0)