Skip to content

Commit 5ed1888

Browse files
authored
public repo edit
1 parent 5021452 commit 5ed1888

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

articles/azure-functions/functions-bindings-event-grid-output.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,9 +158,10 @@ module.exports = function(context) {
158158

159159
# [Python](#tab/python)
160160

161-
The following example shows a trigger binding in a *function.json* file and a [Python function](functions-reference-python.md) that uses the binding. It then sends in an event to the custom event grid topic, as specified by the `topicEndpointUri`.
161+
The following example shows a trigger binding in a *function.json* file and a [Python function](functions-reference-python.md) that uses the binding. It then sends in an event to the custom Event Grid topic, as specified by the `topicEndpointUri`.
162162

163163
Here's the binding data in the *function.json* file:
164+
164165
```json
165166
{
166167
"scriptFile": "__init__.py",
@@ -182,7 +183,8 @@ Here's the binding data in the *function.json* file:
182183
}
183184
```
184185

185-
Here's the python sample to send a event to a custom Event Grid topic by setting the `EventGridOutputEvent`.
186+
Here's the Python sample to send a event to a custom Event Grid topic by setting the `EventGridOutputEvent`:
187+
186188
```python
187189
import logging
188190
import azure.functions as func

0 commit comments

Comments
 (0)