Skip to content

Commit e15f5f3

Browse files
author
Johan Broberg
committed
Fix copyright headers
1 parent 4609c11 commit e15f5f3

71 files changed

Lines changed: 181 additions & 52 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108

109109
- name: Check linting
110110
run: |
111-
uv run --frozen ruff check .
111+
uv run --frozen ruff check . --preview
112112
113113
- name: Check formatting
114114
run: |

libraries/microsoft-agents-a365-notifications/microsoft_agents_a365/notifications/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Copyright (c) Microsoft. All rights reserved.
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
23

34
"""
45
Microsoft Agent 365 Notifications

libraries/microsoft-agents-a365-notifications/microsoft_agents_a365/notifications/agent_notification.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
from __future__ import annotations
25

36
from collections.abc import Awaitable, Callable, Iterable

libraries/microsoft-agents-a365-notifications/microsoft_agents_a365/notifications/models/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
from .agent_notification_activity import AgentNotificationActivity
25
from .email_reference import EmailReference
36
from .wpx_comment import WpxComment

libraries/microsoft-agents-a365-notifications/microsoft_agents_a365/notifications/models/agent_lifecycle_event.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
from enum import Enum
25

36

libraries/microsoft-agents-a365-notifications/microsoft_agents_a365/notifications/models/agent_notification_activity.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
from typing import Any, Optional, Type, TypeVar
25
from microsoft_agents.activity import Activity
36
from .notification_types import NotificationTypes

libraries/microsoft-agents-a365-notifications/microsoft_agents_a365/notifications/models/agent_subchannel.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
from enum import Enum
25

36

libraries/microsoft-agents-a365-notifications/microsoft_agents_a365/notifications/models/email_reference.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
from typing import Optional, Literal
25
from microsoft_agents.activity.entity import Entity
36
from .notification_types import NotificationTypes

libraries/microsoft-agents-a365-notifications/microsoft_agents_a365/notifications/models/email_response.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
from typing import Literal
25
from microsoft_agents.activity.activity import Activity
36
from microsoft_agents.activity.entity import Entity

libraries/microsoft-agents-a365-notifications/microsoft_agents_a365/notifications/models/notification_types.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
from enum import Enum
25

36

0 commit comments

Comments
 (0)