Skip to content
This repository has been archived by the owner on Oct 24, 2023. It is now read-only.

Upload app.jpeg pictures and modify sort_vector #305

Merged
merged 6 commits into from
Sep 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 7 additions & 2 deletions TRANSFORMERS/VECTOR_MANIPULATION/SORT_VECTOR/SORT_VECTOR.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
@flojoy
def SORT_VECTOR(
default: Vector,
reverse: bool = False,
) -> Vector:
"""The SORT_VECTOR node returns the input Vector that is sorted

Expand All @@ -12,10 +13,14 @@ def SORT_VECTOR(
default : Vector
The input vector

Parameters
----------
reverse : bool
If False, sort in ascending order. If True, descending order.

Returns
-------
Vector
Sorted input vector
"""

return Vector(v=sorted(default.v))
return Vector(v=sorted(default.v, reverse=reverse))
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.