Skip to content

Commit ea20a1b

Browse files
fix: typecheck
1 parent dd58fbf commit ea20a1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

services/web/server/src/simcore_service_webserver/functions/_controller/_functions_rest_schemas.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@ class FunctionGetQueryParams(_FunctionQueryParams): ...
2828

2929
_FunctionOrderQueryParams: type[RequestParameters] = create_ordering_query_model_class(
3030
ordering_fields={
31-
"name",
3231
"created_at",
3332
"modified_at",
33+
"name",
3434
},
3535
default=OrderBy(field=IDStr("modified_at"), direction=OrderDirection.DESC),
3636
)
3737

3838

3939
class FunctionsListQueryParams(
40-
PageQueryParameters, _FunctionOrderQueryParams, _FunctionQueryParams
40+
PageQueryParameters, _FunctionOrderQueryParams, _FunctionQueryParams # type: ignore[misc, valid-type]
4141
): ...
4242

4343

0 commit comments

Comments
 (0)