We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9fba86 commit 5b0303bCopy full SHA for 5b0303b
1 file changed
doctests/query_em.py
@@ -45,15 +45,15 @@
45
print(res.total)
46
# >>> 1
47
assert res.total == 1
48
-except:
+except Exception:
49
print("'@price:[270]' syntax not yet supported.")
50
51
try:
52
res = index.search(Query("@price==270")) # not yet supported in redis-py
53
54
55
56
57
print("'@price==270' syntax not yet supported.")
58
59
query = Query("*").add_filter(NumericFilter("price", 270, 270))
@@ -89,7 +89,7 @@
89
90
res = idx_email.search(Query("test@redis.com").dialect(2))
91
print(res)
92
93
print("'test@redis.com' syntax not yet supported.")
94
# REMOVE_START
95
r.ft("idx:email").dropindex(delete_documents=True)
0 commit comments