Skip to content

Commit 3497148

Browse files
committed
Save-all nits
1 parent 86ee081 commit 3497148

File tree

5 files changed

+8
-2
lines changed

5 files changed

+8
-2
lines changed

durabletask-azurefunctions/durabletask/azurefunctions/constants.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
"""Constants used to determine the local running context."""
25
# TODO: Remove unused constants after module is complete
36
DEFAULT_LOCAL_HOST: str = 'localhost:7071'

durabletask-azurefunctions/durabletask/azurefunctions/decorators/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88

99
__all__ = ["durable_app", "metadata"]
1010

11-
PACKAGE_NAME = "durabletask.entities"
11+
PACKAGE_NAME = "durabletask.azurefunctions.decorators"

durabletask-azurefunctions/durabletask/azurefunctions/decorators/metadata.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Copyright (c) Microsoft Corporation. All rights reserved.
22
# Licensed under the MIT License.
3+
34
from typing import Optional
45

56
from durabletask.azurefunctions.constants import ORCHESTRATION_TRIGGER, \
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-azurefunctions/durabletask/azurefunctions/internal/azurefunctions_grpc_interceptor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from durabletask.internal.grpc_interceptor import DefaultClientInterceptorImpl
77

88

9-
class AzureFunctionsDefaultClientInterceptorImpl (DefaultClientInterceptorImpl):
9+
class AzureFunctionsDefaultClientInterceptorImpl(DefaultClientInterceptorImpl):
1010
"""The class implements a UnaryUnaryClientInterceptor, UnaryStreamClientInterceptor,
1111
StreamUnaryClientInterceptor and StreamStreamClientInterceptor from grpc to add an
1212
interceptor to add additional headers to all calls as needed."""

0 commit comments

Comments
 (0)