From 66ba34dbf125596401045f8484d7772b8dea28bf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 15 Mar 2024 16:09:38 +0000 Subject: [PATCH] Automatic application of license header --- jupyter_collaboration/chat_ydoc.py | 3 +++ packages/docprovider/src/chat/factory.ts | 5 +++++ packages/docprovider/src/chat/index.ts | 5 +++++ packages/docprovider/src/chat/model.ts | 5 +++++ packages/docprovider/src/chat/widget.ts | 5 +++++ 5 files changed, 23 insertions(+) diff --git a/jupyter_collaboration/chat_ydoc.py b/jupyter_collaboration/chat_ydoc.py index c866a33b..1475a88a 100644 --- a/jupyter_collaboration/chat_ydoc.py +++ b/jupyter_collaboration/chat_ydoc.py @@ -1,3 +1,6 @@ +# Copyright (c) Jupyter Development Team. +# Distributed under the terms of the Modified BSD License. + from functools import partial import json from jupyter_ydoc.ybasedoc import YBaseDoc diff --git a/packages/docprovider/src/chat/factory.ts b/packages/docprovider/src/chat/factory.ts index 24507d5e..8d508451 100644 --- a/packages/docprovider/src/chat/factory.ts +++ b/packages/docprovider/src/chat/factory.ts @@ -1,3 +1,8 @@ +/* + * Copyright (c) Jupyter Development Team. + * Distributed under the terms of the Modified BSD License. + */ + import { ChatWidget, IChatModel } from '@jupyter/chat'; import { IThemeManager } from '@jupyterlab/apputils'; import { ABCWidgetFactory, DocumentRegistry } from '@jupyterlab/docregistry'; diff --git a/packages/docprovider/src/chat/index.ts b/packages/docprovider/src/chat/index.ts index dfb3420b..e87e8f8a 100644 --- a/packages/docprovider/src/chat/index.ts +++ b/packages/docprovider/src/chat/index.ts @@ -1,3 +1,8 @@ +/* + * Copyright (c) Jupyter Development Team. + * Distributed under the terms of the Modified BSD License. + */ + export * from './factory'; export * from './model'; export * from './widget'; diff --git a/packages/docprovider/src/chat/model.ts b/packages/docprovider/src/chat/model.ts index a79e4ad4..275a897f 100644 --- a/packages/docprovider/src/chat/model.ts +++ b/packages/docprovider/src/chat/model.ts @@ -1,3 +1,8 @@ +/* + * Copyright (c) Jupyter Development Team. + * Distributed under the terms of the Modified BSD License. + */ + import { ChatModel, IChatMessage, INewMessage, IUser } from '@jupyter/chat'; import { Delta, MapChange, StateChange, YDocument } from '@jupyter/ydoc'; import { DocumentRegistry } from '@jupyterlab/docregistry'; diff --git a/packages/docprovider/src/chat/widget.ts b/packages/docprovider/src/chat/widget.ts index 1fb47605..7ae2971a 100644 --- a/packages/docprovider/src/chat/widget.ts +++ b/packages/docprovider/src/chat/widget.ts @@ -1,3 +1,8 @@ +/* + * Copyright (c) Jupyter Development Team. + * Distributed under the terms of the Modified BSD License. + */ + import { ChatWidget } from '@jupyter/chat'; import { DocumentRegistry, DocumentWidget } from '@jupyterlab/docregistry';