mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-12 12:13:15 -06:00
fix: add key to remove sort
This commit is contained in:
parent
960d7acf26
commit
247f80921d
1 changed files with 1 additions and 1 deletions
|
@ -3441,7 +3441,7 @@ class Viv:
|
||||||
if cli.is_file():
|
if cli.is_file():
|
||||||
to_remove.append(cli)
|
to_remove.append(cli)
|
||||||
|
|
||||||
to_remove = list(set(to_remove))
|
to_remove = sorted(set(to_remove), key=lambda p: p.is_file())
|
||||||
if confirm(
|
if confirm(
|
||||||
"Remove the above files/directories?",
|
"Remove the above files/directories?",
|
||||||
"\n".join(f" - {a.red}{p}{a.end}" for p in to_remove) + "\n",
|
"\n".join(f" - {a.red}{p}{a.end}" for p in to_remove) + "\n",
|
||||||
|
|
Loading…
Reference in a new issue