Skip to content

Commit 50c77f1

Browse files
committed
moving dapr bindings and triggers to FunctionApp and getting rid of DaprFunctionApp
Signed-off-by: MD Ashique <[email protected]>
1 parent 14fbd24 commit 50c77f1

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

azure/functions/decorators/dapr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,4 +167,4 @@ def __init__(self,
167167
self.binding_name = binding_name
168168
self.operation = operation
169169
self.dapr_address = dapr_address
170-
super().__init__(name=name, data_type=data_type)
170+
super().__init__(name=name, data_type=data_type)

azure/functions/decorators/function_app.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1321,8 +1321,6 @@ def decorator():
13211321

13221322
return wrap
13231323

1324-
1325-
13261324
class BindingApi(DecoratorApi, ABC):
13271325
"""Interface to extend for using existing binding decorator functions."""
13281326

@@ -2596,6 +2594,7 @@ def decorator():
25962594

25972595
return wrap
25982596

2597+
25992598
class SettingsApi(DecoratorApi, ABC):
26002599
"""Interface to extend for using existing settings decorator in
26012600
functions."""

0 commit comments

Comments
 (0)