We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6184cd commit 293e0a9Copy full SHA for 293e0a9
meilisearch/tests/__init__.py
@@ -3,6 +3,5 @@
3
4
def clear_all_indexes(client):
5
indexes = client.get_indexes()
6
- uids = [index['uid'] for index in indexes]
7
- for uid in uids:
8
- client.get_index(uid).delete()
+ for index in indexes:
+ client.get_index(index['uid']).delete()
0 commit comments