From ebf088c8d0c2c379a3b4084e600f9394d768ffba Mon Sep 17 00:00:00 2001 From: SrikanthMyakam Date: Tue, 7 Jan 2025 02:27:57 -0800 Subject: [PATCH] Fix typo --- lisa/tools/ls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisa/tools/ls.py b/lisa/tools/ls.py index e64c0b9342..ec2db80622 100644 --- a/lisa/tools/ls.py +++ b/lisa/tools/ls.py @@ -106,7 +106,7 @@ def list(self, path: str, sudo: bool = False) -> List[str]: sudo=sudo, ) if output: - return List(output.split()) + return list(output.split()) else: return []