Skip to content

Commit edbd690

Browse files
authored
add link to repo
1 parent cc4e654 commit edbd690

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

articles/azure-functions/functions-bindings-triggers-python.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -165,14 +165,12 @@ def test_function(mytimer: func.TimerRequest) -> None:
165165

166166
## Durable Functions
167167

168-
Durable Functions lso provides preview support of the V2 programming model. To try it out, install the Durable Functions SDK (PyPI package `azure-functions-durable`) from version `1.2.2` or greater.
168+
Durable Functions also provides preview support of the V2 programming model. To try it out, install the Durable Functions SDK (PyPI package `azure-functions-durable`) from version `1.2.2` or greater. You can reach us in the [Durable Functions SDK for Python repo](https://github.com/Azure/azure-functions-durable-python) with feedback and suggestions.
169169

170-
> ![NOTE]
171-
> Using [Extension Bundles](/azure-functions/functions-bindings-register#extension-bundles) is yet supported when trying out the new V2 programming model with Durable Functions. You will need
172-
> to manage your Extensions manually. To do this, remove the `extensionBundles` section of your `host.json` as described [here](/azure-functions/functions-bindings-register#extension-bundles) and
173-
> run `func extensions install --package Microsoft.Azure.WebJobs.Extensions.DurableTask --version 2.9.1` on your terminal. This will install the Durable Functions extension for your app and will allow
174-
> you to try out the new experience.
175170

171+
> ![NOTE]
172+
> Using [Extension Bundles](/azure-functions/functions-bindings-register#extension-bundles) is yet supported when trying out the new V2 programming model with Durable Functions. You will need to manage your Extensions manually.
173+
> To do this, remove the `extensionBundles` section of your `host.json` as described [here](/azure-functions/functions-bindings-register#extension-bundles) and run `func extensions install --package Microsoft.Azure.WebJobs.Extensions.DurableTask --version 2.9.1` on your terminal. This will install the Durable Functions extension for your app and will allow you to try out the new experience.
176174
177175
The Durable Functions Triggers and Bindings may be accessed from an instance `DFApp`, a subclass of `FunctionApp` that additionally exports Durable Functions-specific decorators.
178176

@@ -205,7 +203,7 @@ def my_orchestrator(context):
205203
# Activity
206204
@myApp.activity_trigger(input_name="myInput")
207205
def hello(myInput: str):
208-
return "Hello " + my_input
206+
return "Hello " + myInput
209207
```
210208

211209
> [!NOTE]

0 commit comments

Comments
 (0)