Skip to content

Commit d456bbb

Browse files
committed
fix linter issues
Signed-off-by: wiseaidev <[email protected]>
1 parent 20b4620 commit d456bbb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_hash_model.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ async def test_pagination_queries(members, m):
151151

152152
assert actual == [member1, member2]
153153

154-
actual = await m.Member.find().page(1,1)
154+
actual = await m.Member.find().page(1, 1)
155155

156156
assert actual == [member1]
157157

@@ -624,3 +624,4 @@ class Address(m.BaseHashModel):
624624
assert (
625625
Address.redisearch_schema()
626626
== f"ON HASH PREFIX 1 {key_prefix} SCHEMA pk TAG SEPARATOR | a_string TAG SEPARATOR | a_full_text_string TAG SEPARATOR | a_full_text_string AS a_full_text_string_fts TEXT an_integer NUMERIC SORTABLE a_float NUMERIC"
627+
)

0 commit comments

Comments
 (0)