We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6a7442 commit d5413b0Copy full SHA for d5413b0
sdk/table/azure-table/samples/create_query_entities.py
@@ -22,7 +22,7 @@ def sample_query_entities(self):
22
queried_entities = table_client.query_entities(filter=self.name_filter, select="brand,color")
23
24
# queried_entities type is ItemPaged
25
- for entity_chosen in list(queried_entities):
+ for entity_chosen in queried_entities:
26
# create a list of the entities and iterate through them to print each one out
27
# calls to the service to get more entities are made without user knowledge
28
print(entity_chosen)
0 commit comments