Skip to content

Commit 721da25

Browse files
committed
fix validation warnings
1 parent fede0dd commit 721da25

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/search/cognitive-search-custom-skill-python.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ The custom skill is simple by design (it concatenates two strings) so that you c
2323

2424
+ [!INCLUDE [cognitive-services-bing-entity-search-signup-requirements](../../includes/cognitive-services-bing-entity-search-signup-requirements.md)]
2525

26-
+ Set up your environment. We followed [this tutorial end-to-end](https://docs.microsoft.com/en-us/azure/python/tutorial-vs-code-serverless-python-01) to set up serverless Azure Function in Python in Visual Studio Code. This tutorial leads you through installation of the following tools and components:
26+
+ Set up your environment. We followed [this tutorial end-to-end](https://docs.microsoft.com/azure/python/tutorial-vs-code-serverless-python-01) to set up serverless Azure Function in Python in Visual Studio Code. This tutorial leads you through installation of the following tools and components:
2727

2828
+ [Python 3.75](https://www.python.org/downloads/release/python-375/)
2929
+ [Visual Studio Code](https://code.visualstudio.com/)
3030
+ [Python extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-python.python)
31-
+ [Azure Functions Core Tools](https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#v2)
31+
+ [Azure Functions Core Tools](https://docs.microsoft.com/azure/azure-functions/functions-run-local#v2)
3232
+ [Azure Functions extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-azurefunctions)
3333

3434

@@ -51,10 +51,10 @@ The Azure Functions project template in Visual Studio Code creates a project tha
5151
1. Select the Python version, (version 3.7.5 is supported by Azure Functions)
5252
1. Select a template for your project's first function. Select **HTTP trigger** to create an HTTP triggered function in the new function app.
5353
1. Provide a function name. In this case, let's use **LayoutExtractor**
54-
1. Select **Function** as the Authorization level. This means that we will provide a [function key](../articles/azure-functions/functions-bindings-http-webhook.md#authorization-keys) to call the function's HTTP endpoint.
54+
1. Select **Function** as the Authorization level. This means that we will provide a [function key](../azure-functions/functions-bindings-http-webhook.md#authorization-keys) to call the function's HTTP endpoint.
5555
1. Select how you would like to open your project. For this step, select **Add to workspace** to create the function app in the current workspace.
5656

57-
Visual Studio Code creates the function app project in a new workspace. This project contains the [host.json](../articles/azure-functions/functions-host-json.md) and [local.settings.json](../articles/azure-functions/functions-run-local.md#local-settings-file) configuration files, plus any language-specific project files.
57+
Visual Studio Code creates the function app project in a new workspace. This project contains the [host.json](../azure-functions/functions-host-json.md) and [local.settings.json](../azure-functions/functions-run-local.md#local-settings-file) configuration files, plus any language-specific project files.
5858

5959
A new HTTP triggered function is also created in the **LayoutExtractor** folder of the function app project. Inside it there will be a file called "\__init__.py", with this content:
6060

0 commit comments

Comments
 (0)