Skip to content

Commit 972d0cd

Browse files
authored
Standardize copyright file headers (#158)
* Standardize copyright file headers * Delete azure-functions-durable/azure/durable_functions/decorators/durable_app.py
1 parent bb721f8 commit 972d0cd

44 files changed

Lines changed: 134 additions & 0 deletions

Some content is hidden

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

.github/copilot-instructions.md

Lines changed: 15 additions & 0 deletions
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.

durabletask/entities/durable_entity.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, TypeVar, overload
25

36
from durabletask.entities.entity_context import EntityContext

durabletask/entities/entity_context.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
13

24
from typing import Any, TypeVar, overload
35
import uuid

durabletask/entities/entity_instance_id.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
class EntityInstanceId:
25
def __init__(self, entity: str, key: str):
36
EntityInstanceId.validate_entity_name(entity)

durabletask/entities/entity_lock.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 typing import TYPE_CHECKING

durabletask/entities/entity_metadata.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 datetime import datetime, timezone
25
from typing import Any, TypeVar, overload
36
from durabletask.entities.entity_instance_id import EntityInstanceId

durabletask/entities/entity_operation_failed_exception.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 durabletask.internal.orchestrator_service_pb2 import TaskFailureDetails
25
from durabletask.entities.entity_instance_id import EntityInstanceId
36

durabletask/internal/entity_state_shim.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, TypeVar, overload
25

36
import durabletask.internal.orchestrator_service_pb2 as pb

0 commit comments

Comments
 (0)