Skip to content

Commit d349c31

Browse files
authored
Fix Python pivot?
1 parent fdf5ae4 commit d349c31

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/azure-functions/how-to-create-function-vs-code.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -111,20 +111,20 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
111111

112112
Using this information, Visual Studio Code generates an Azure Functions project with an HTTP trigger. You can view the local project files in the Explorer. To learn more about files that are created, see [Generated project files](functions-develop-vs-code.md?tabs=javascript#generated-project-files).
113113

114-
::: zone pivot="programming-language-python"
115-
4. In the local.settings.json file, update the `AzureWebJobsStorage` setting as in the following example:
114+
::: zone pivot="programming-language-python"
115+
4. In the local.settings.json file, update the `AzureWebJobsStorage` setting as in the following example:
116116

117-
```json
118-
"AzureWebJobsStorage": "UseDevelopmentStorage=true",
119-
```
120-
121-
This tells the local Functions host to use the storage emulator for the storage connection required by the Python v2 model. When you publish your project to Azure, this setting uses the default storage account instead. If you're using an Azure Storage account during local development, set your storage account connection string here.
117+
```json
118+
"AzureWebJobsStorage": "UseDevelopmentStorage=true",
119+
```
120+
121+
This tells the local Functions host to use the storage emulator for the storage connection required by the Python v2 model. When you publish your project to Azure, this setting uses the default storage account instead. If you're using an Azure Storage account during local development, set your storage account connection string here.
122122

123123
## Start the emulator
124124

125125
1. In Visual Studio Code, press <kbd>F1</kbd> to open the command palette. In the command palette, search for and select `Azurite: Start`.
126126

127-
1. Check the bottom bar and verify that Azurite emulation services are running. If so, you can now run your function locally.
127+
1. Check the bottom bar and verify that Azurite emulation services are running. If so, you can now run your function locally.
128128
::: zone-end
129129
[!INCLUDE [functions-run-function-test-local-vs-code](../../includes/functions-run-function-test-local-vs-code.md)]
130130

0 commit comments

Comments
 (0)