Skip to content

Commit

Permalink
fix get_assets_awaiting_moderation()
Browse files Browse the repository at this point in the history
  • Loading branch information
Kunsi committed Oct 3, 2024
1 parent 88f73b1 commit 0295eb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def get_user_assets():


def get_assets_awaiting_moderation():
return [asset for asset in get_assets() if asset.state == State.NEW]
return [asset for asset in get_assets() if asset.state == State.REVIEW]


def get_all_live_assets(no_time_filter=False):
Expand Down

0 comments on commit 0295eb9

Please sign in to comment.