From d6d5eb85d68c7516118271e7b6efeb0ea706264f Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Sun, 26 Apr 2026 07:47:27 +0000 Subject: [PATCH] Revert an accidental change of functionality that was breaking file listings, originally done for linting purposes in commit 3767fb0. --- cista/watching.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cista/watching.py b/cista/watching.py index 77a8b32..8e5e3e2 100644 --- a/cista/watching.py +++ b/cista/watching.py @@ -191,7 +191,7 @@ def walk(rel: PurePosixPath, stat: stat_result | None = None) -> list[FileEntry] if isfile: return [entry] # Walk all entries of the directory - ret: list[FileEntry] = [] + ret: list[FileEntry] = [...] # type: ignore[assignment] li = [] for f in path.iterdir(): if stop_event.is_set():