Skip to content

Commit d5413b0

Browse files
committed
removed list froma round itempaged
1 parent a6a7442 commit d5413b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/table/azure-table/samples/create_query_entities.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def sample_query_entities(self):
2222
queried_entities = table_client.query_entities(filter=self.name_filter, select="brand,color")
2323

2424
# queried_entities type is ItemPaged
25-
for entity_chosen in list(queried_entities):
25+
for entity_chosen in queried_entities:
2626
# create a list of the entities and iterate through them to print each one out
2727
# calls to the service to get more entities are made without user knowledge
2828
print(entity_chosen)

0 commit comments

Comments
 (0)