Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
legnaleurc committed Jan 4, 2024
1 parent f57fab0 commit 2c27b2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drive/app/unstable/listeh.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ async def main(args: list[str]) -> int:
async with create_default_drive() as drive:
parent = await drive.get_node_by_path(path)
children = await drive.get_children(parent)
g = ((to_eid(_.name), _.name) for _ in children)
g = ((to_eid(_.name), _.name) for _ in children if not _.is_trashed)
pair_list = [(eid, name) for eid, name in g if eid is not None]
pair_list.sort(reverse=True)
name_list = (name for _eid, name in pair_list)
Expand Down

0 comments on commit 2c27b2e

Please sign in to comment.