Skip to content

Commit 145e1e0

Browse files
Update service/routes/marvel.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent dc10a0a commit 145e1e0

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

service/routes/marvel.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,10 @@ def marvel_get_by_character(
208208
h: Annotated[Optional[str], Query(description="Headers to display. Either a string or Array of strings")] = None,
209209
help: Annotated[Optional[str], Query(description=f"List available options. {_TF_TEXT}")] = None,
210210
limit: Annotated[Optional[str], Query(description="Limit result set. '0' for no limit")] = None,
211-
nulls: Annotated[Optional[str], Query(description=f"Sort null values first or last in order. {_TF_TEXT}")] = None,
211+
nulls: Annotated[
212+
Optional[str],
213+
Query(description="Sort null values in ordered results; accepted values: 'first' or 'last'."),
214+
] = None,
212215
pretty: Annotated[Optional[str], Query(description=f"Pretty print the result set. {_TF_TEXT}")] = None,
213216
prune: Annotated[Optional[str], Query(description=f"Remove keys with null values. {_TF_TEXT}")] = None,
214217
s: Annotated[Optional[str], Query(description="Columns to sort on.")] = None,

0 commit comments

Comments
 (0)