Skip to content

Commit

Permalink
fix linter issues
Browse files Browse the repository at this point in the history
Signed-off-by: wiseaidev <[email protected]>
  • Loading branch information
wiseaidev committed Aug 10, 2022
1 parent 20b4620 commit d456bbb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_hash_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ async def test_pagination_queries(members, m):

assert actual == [member1, member2]

actual = await m.Member.find().page(1,1)
actual = await m.Member.find().page(1, 1)

assert actual == [member1]

Expand Down Expand Up @@ -624,3 +624,4 @@ class Address(m.BaseHashModel):
assert (
Address.redisearch_schema()
== 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"
)

0 comments on commit d456bbb

Please sign in to comment.