cmds.projects.ListRepos: Fix missing await

Fix

  CmdListRepos.py:51: RuntimeWarning: coroutine 'FileTransfer.close' was never awaited

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2026-04-16 16:11:40 +02:00
commit 781393ad42

View file

@ -48,7 +48,7 @@ class CmdListRepos(Cmd): # export
raise
finally:
if ssh is not None:
ssh.close()
await ssh.close()
case 'https':
from jw.pkg.lib.base import InputMode
cmd_input = InputMode.NonInteractive