Skip to content

Commit 60672dc

Browse files
fix typo
1 parent 285814f commit 60672dc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docs/python/1.6/python-appapi-devguide-4.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Find detailed information about [processing Streams of data in the documentation
9393
### A note about execution
9494
The Python API is used to _create_ an application that can be executed on the Streams runtime. Thus, callables such as the `get_readings` function are not invoked until the created application is executed on the Streams runtime.
9595

96-
It is especially important to remember this if the Python sapplication is created on a different host than the host where it will be executed, that is, where Streams is installed. For example, if the `get_readings` function opens a file, that file must actually exist on the host where Streams is running. See [Working with files](#files) for an example of using local files.
96+
It is especially important to remember this if the Python application is created on a different host than the host where it will be executed, that is, where Streams is installed. For example, if the `get_readings` function opens a file, that file must actually exist on the host where Streams is running. See [Working with files](#files) for an example of using local files.
9797

9898

9999
<a id="source"></a>
@@ -738,7 +738,6 @@ We create 2 Views, one for the input and one for the result `Stream`.
738738
Once the applicaton is running, use the `View` to fetch data from the `Stream`:
739739

740740
~~~python
741-
742741
try:
743742
print("Fetching data from view")
744743
tuple_queue = results_view.start_data_fetch()

0 commit comments

Comments
 (0)