Skip to content

Commit

Permalink
fix(firestore): fix lint (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
HemangChothani committed May 18, 2020
1 parent bef5a3a commit 7fa00c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/unit/v1/test_order.py
Expand Up @@ -207,8 +207,8 @@ def _double_value(d):
return encode_value(d)


def _int_value(l):
return encode_value(l)
def _int_value(value):
return encode_value(value)


def _string_value(s):
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/v1beta1/test_order.py
Expand Up @@ -207,8 +207,8 @@ def _double_value(d):
return encode_value(d)


def _int_value(l):
return encode_value(l)
def _int_value(value):
return encode_value(value)


def _string_value(s):
Expand Down

0 comments on commit 7fa00c4

Please sign in to comment.