Skip to content

Commit 9df189b

Browse files
committed
remove confusing async bit
1 parent 45302f8 commit 9df189b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

snippets/firestore/firestore_pipelines.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,6 @@ def basic_read():
6565
pipeline = client.pipeline().collection("users")
6666
for result in pipeline.execute():
6767
print(f"{result.id} => {result.data()}")
68-
# or, asynchronously
69-
result_stream = pipeline.stream()
70-
async for result in result_stream:
71-
print(f"{result.id} => {result.data()}")
7268
# [END basic_read]
7369

7470

0 commit comments

Comments
 (0)