We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67e7711 commit 65aadb8Copy full SHA for 65aadb8
fastapi_jsonapi/data_layers/filtering/sqlalchemy.py
@@ -83,6 +83,7 @@ def create_filter(self, schema_field: ModelField, model_column, operator, value)
83
if isinstance(value, list): # noqa: SIM108
84
clear_value = [i_type(item) for item in value]
85
else:
86
+ # pass
87
clear_value = i_type(value)
88
except (TypeError, ValueError) as ex:
89
errors.append(str(ex))
0 commit comments