Skip to content

Commit 6a14b1d

Browse files
committed
fix lint error
1 parent 49c34d6 commit 6a14b1d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/expression_converter_/test_op_expressions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,8 @@ def test_no_conversion_dict_value(self):
142142

143143
def _test_conversion_valid_type(self, _type):
144144
self.assertConversionEqual(
145-
{"$in": ["$age", [_type]]}, _wrap_condition_if_null(_type, {"age": {"$in": [_type]}}, "age")
145+
{"$in": ["$age", [_type]]},
146+
_wrap_condition_if_null(_type, {"age": {"$in": [_type]}}, "age"),
146147
)
147148

148149
def test_conversion_various_types(self):

0 commit comments

Comments
 (0)