We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ff73a3 commit e73740dCopy full SHA for e73740d
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