Skip to content

Commit 65aadb8

Browse files
committed
added test case
1 parent 67e7711 commit 65aadb8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

fastapi_jsonapi/data_layers/filtering/sqlalchemy.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ def create_filter(self, schema_field: ModelField, model_column, operator, value)
8383
if isinstance(value, list): # noqa: SIM108
8484
clear_value = [i_type(item) for item in value]
8585
else:
86+
# pass
8687
clear_value = i_type(value)
8788
except (TypeError, ValueError) as ex:
8889
errors.append(str(ex))

0 commit comments

Comments
 (0)